How to get details of variables?
6 views (last 30 days)
Show older comments
let supoose i run the code of file untitled i got just name in command window untitled.
clear all clc
D=15;
B=zeros(D,1);
for i=0:D-1
B(D)=i;
end
2 Comments
Askic V
on 16 Feb 2023
Type "whos" in the command windows to get more information about the variables.
Accepted Answer
Image Analyst
on 16 Feb 2023
clear all clc
D=15;
B=zeros(D,1);
for i=0:D-1
B(D)=i;
end
whos D
whos B
D
B
0 Comments
More Answers (0)
See Also
Categories
Find more on Whos in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!