我应该在MATLAB中的属性名称后面加一个分号吗?

面向对象的MATLAB中推荐的格式是什么:在属性名称后面加一个分号?

classdef SemicolonVersion
   properties
      prop1;
   end
end

要么

classdef NoSemicolonVersion
   properties
      prop1
   end
end

最佳答案 你可以使用其中之一. MATLAB文档使用两者,因此实际上没有可接受的方法.使用你想要的任何东西.

http://mathworks.com/help/matlab/matlab_oop/specifying-attributes.html

点赞