面向对象的MATLAB中推荐的格式是什么:在属性名称之后加一个分号?
classdef SemicolonVersion
properties
prop1;
end
end
OR
classdef NoSemicolonVersion
properties
prop1
end
end
答案 0 :(得分:2)
您可以使用其中之一。 MATLAB文档使用两者,因此实际上没有接受的方法。使用你想要的任何东西。
http://mathworks.com/help/matlab/matlab_oop/specifying-attributes.html