13 lines
305 B
Matlab
Executable File
13 lines
305 B
Matlab
Executable File
function YESNO = is(X,property,additional)
|
|
%IS Check property of variable.
|
|
% d = IS(x,property) returns 1 if 'property' holds
|
|
%
|
|
% Properties possible to test are: 'complex'
|
|
|
|
switch property
|
|
case 'complex'
|
|
YESNO = ~isreal(X.basis);
|
|
otherwise
|
|
error('Wrong input argument.');
|
|
end
|