How to get details of variables?
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Zar
el 16 de Feb. de 2023
Respondida: Image Analyst
el 16 de Feb. de 2023
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 comentarios
Askic V
el 16 de Feb. de 2023
Type "whos" in the command windows to get more information about the variables.
Respuesta aceptada
Image Analyst
el 16 de Feb. de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Whos en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!