Constants that cannot be delete with CLEAR

13 views (last 30 days)
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.

Accepted Answer

Matt J
Matt J on 4 Jun 2023
Edited: Matt J on 4 Jun 2023
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

More Answers (1)

Dyuman Joshi
Dyuman Joshi on 4 Jun 2023
Moved: Matt J on 4 Jun 2023
You can use this command
clearvars -except VariblesNotToBeDeleted
  1 Comment
Pierre
Pierre on 4 Jun 2023
Edited: Pierre on 4 Jun 2023
I little bit too long, imagine I have many constants.

Sign in to comment.

Categories

Find more on Function Creation in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!