Nested functions in a class - Call the function without including the class name as filename.function
5 views (last 30 days)
Show older comments
Hello MATLAB experts,
I defined a class with different functions that are called from external .m files but also call eachother reciprocally, that is the functions call other functions in the same class. As far as I could understand, I always have to use the call form classname.function to call a function from this class. However, I would rather avoid it for the function that are all in the same class in the same file (similarly to local functions), to make the code clearer.
For example:
classdef small_test
properties
PropertyName
end
methods (Static)
function d = sum_scale_test(a,b)
c = a+b;
d = small_test.scale_test(c);
end
function b = scale_test(a)
b=10*a;
end
end
end
Is there a way to skip the long call:
small_test.scale_test
and just use
scale_test
?
Maybe with some access option?
Thank you for the help!
0 Comments
Accepted Answer
Mitch Lautigar
on 1 Jun 2022
Edited: per isakson
on 3 Jun 2022
You can put subfunctions/nested functions below the Class call (after the end for classdef) and therefore have local functions for the class to reference. This will look like the following:
classdef <namehere>
properties
%....
end
methods
function obj = dosomething(obj)
end
end
function function_callsub1
%do stuff here
end
3 Comments
Mitch Lautigar
on 1 Jun 2022
No. They are local functions in this case. If you want regular functions, you need to create the functions outside of the class.
More Answers (0)
See Also
Categories
Find more on Software Development Tools 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!