Why does the Variable Editor display my object incorrectly when I overload the SIZE method in MATLAB 7.9 (R2009b)?

I created the following class definition with an overloaded SIZE method:
classdef testclass properties values = ones(1,3); stored; end methods function s = size(hobj) s = builtin('size',hobj.values); end end end
When I instantiate an object of the class and examine the object in the Variable Editor:
t = testclass; openvar(t)
I see the following:
val = <a href="matlab:help testclass">testclass</a> Properties: values: [1 1 1] stored: [] <a href="matlab:methods('bfmsparse')">Methods</a>
This does not occur if I do not overload the SIZE method.

 채택된 답변

The reason that the object is not displayed correctly in the Variable Editor when you overload the SIZE function, is that the Variable Editor calls SIZE with the following syntax:
[height, width] = size(var);
In this case, the overloaded SIZE method does not support this calling mechanism. This causes the call to SIZE to error, which causes the Variable Editor to call DISP instead and display the results.
To ensure that MATLAB functions that call SIZE internally behave correctly, your SIZE method should support all the syntaxes defined in the documentation for SIZE, that a caller of SIZE may reasonably expect to work, namely
d = size(X) [m,n] = size(X) m = size(X,dim) [d1,d2,d3,...,dn] = size(X)
The default SIZE and NUMEL functions should behave consistently with user-defined classes. However, if you change the way size behaves, ensure that the values returned make sense for the intended use of your class.

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Handle Classes에 대해 자세히 알아보기

제품

릴리스

R2009b

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by