Matlab类动态填充属性

时间:2018-08-09 15:09:30

标签: matlab matlab-class

我正在尝试在Matlab类中动态填充属性。 我将向量传递给方法函数,然后计算各种参数。我想在for循环中填充属性,请参见代码示例。 OwnClassFunction只是该类中其他函数的一个示例,但是在代码示例中未实现。如何正确执行此操作?

classdef Sicherung < handle      

    properties
        x = ([],1)
    end

    methods
        function examplefunction(object,...
                single_parameter_vector) % (n,1) n can be any size 

            for i=1:length(param_vector)

                [object.x(i,1)] = object.OwnClassFunction(single_parameter_vector(i,1));
            end
        end
    end
end

如果我尝试类似的事情

...
properties
   x = []
end
...
function ...(object,parameter)
   for i=1:length(parameter)
     [object.x(i)] = function(parameter(i));
   end

我收到错误消息订阅的分配维度不匹配

1 个答案:

答案 0 :(得分:0)

我没有要测试的MATLAB,但以下方法应该可以工作。

您的代码非常接近正确运行的方法。对其进行如下更改:

classdef Sicherung < handle      

    properties
        x = [] % initialize to empty array
    end

    methods
        function examplefunction(object,param_vector)
            if ~isvector(param_vector)
                 error('vector expected') % check input
            end
            n = numel(param_vector)
            object.x = zeros(n,1); % preallocate
            for i=1:n
                object.x(i) = object.OwnClassFunction(param_vector(i));
            end
        end
    end
end