How to get details of variables?
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Zar
le 16 Fév 2023
Réponse apportée : Image Analyst
le 16 Fév 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 commentaires
Askic V
le 16 Fév 2023
Type "whos" in the command windows to get more information about the variables.
Réponse acceptée
Image Analyst
le 16 Fév 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 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Whos dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!