MATLAB: Set size of array in object through input

arraycell arraysMATLAB

Hello,
i want to write a script with an object. One of the private properties should be an array. Its size should not be knew at the start of the script. During the run a function should ask the user to enter an integer. This integer should be the size of this 1D-array with the size.
How it could be implemented?

Best Answer

classdef SomeClass
properties (SetAccess = private)
Array = [];
end
methods
function this = SetArraySize(this)
sz = input('What size should the array be ? ');
validateattributes(sz, {'numeric'}, {'integer', 'positive', 'scalar'})
this.Array = zeros(1, sz);
end
end
end
%usage
obj = SomeClass %object with empty array
obj = obj.SetArraySize %prompts for array size