Constants that cannot be delete with CLEAR

Simple,
I have some personal constants define in startup.m but every time I type CLEAR in the command window I loose them.
Is there a way to make some constants non deletable ?
Thank you.

 采纳的回答

You could make the constants the Constant properties of a class. Then they can be reused even after issuing clear
classdef myconst
properties (Constant)
a=1;b=2;c=3
end
end
>> myconst.a
ans =
1
>> clear
>> myconst.b
ans =
2

更多回答(1 个)

You can use this command
clearvars -except VariblesNotToBeDeleted

1 个评论

I little bit too long, imagine I have many constants.

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Workspace Variables and MAT Files 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by