ans =1 1numel(vs)ans =1size([vs;vs])ans =2 1numel([vs;vs])ans =2vs is a scalar object. The Value property is an array of doubles:size(vs.Value)ans =1 10Apply indexing expressions to the object property:vssub = vs.Value(7:end);
size(vssub)ans =1 4The vs.Value property is an array of class double:class(vs.Value)ans =double12 How to Build on Other Classes