A class containing constants is a good clean way to do this. See the article in the Matlab documentation: http://www.mathworks.com/help/matlab/matlab_oop/properties-with-constant-values.html
For example, if you create a class with the name NamedConstas follows:
classdef NamedConst
properties (Constant)
R = pi/180;
D = 1/NamedConst.R;
AccCode = '0145968740001110202NPQ';
RN = rand(5);
end
end
You can reference values ββwith
radi = 45*NamedConst.R
You can find more information in the link provided.
source
share