Protected External Methods
7 次查看(过去 30 天)
显示 更早的评论
As a coding standard, our lab uses external methods as a way of maintaining our modular code. However, I've found that MATLAB doesn't have a way to make the Access for external methods protected. I've found that I can make external methods private by adding a /private/ folder to the class folder, so I was wondering if there was a 'protected' equivalent.
2 个评论
采纳的回答
Daniel Shub
2011-5-20
http://www.mathworks.com/help/techdoc/matlab_oop/brqy3km-14.html#brqy3km-15 under "Specify Method Attributes in classdef File" ...
Basically, inside the class definition create a methods block with properties Acess = protected. Inside that block add the function footprint.
methods (Access = protected)
[a,b,c]=protectedmethod(x,y,z);
end
Then create a seperate m file in the root class directory named protectedmethod with the header
function [d,e,f]=protectedmethod(u,v,w)
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Model Protection 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!