Script whos_function.m
Download Script whos_function.m
%----------------------------------------------------------
%DATA PROPERTIES n.4 M.file:whos_function.m
%----------------------------------------------------------
%%
%whos gives for all variables name together
%with their size, bytes, class and attributes
%IN THE WORKSPACE ARE SAVED ALL VARIABLES
%OF M-FILES "DATA PROPERTIES" n.1, n.2 and n.3
whos
%
%about_whos
%is a struct array of size 26x1 and nine fields:
%name,size,bytes,class,global,sparse,complex
%nesting and persistent. In Command Window
%the last five fields are grouped as attributes
about_whos=whos
%----------------------------------------------------------

Back