フィルターのクリア

How to get details of variables?

6 ビュー (過去 30 日間)
Zar
Zar 2023 年 2 月 16 日
回答済み: Image Analyst 2023 年 2 月 16 日
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 件のコメント
DGM
DGM 2023 年 2 月 16 日
What exactly is the question?
Askic V
Askic V 2023 年 2 月 16 日
Type "whos" in the command windows to get more information about the variables.

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2023 年 2 月 16 日
clear all clc
D=15;
B=zeros(D,1);
for i=0:D-1
B(D)=i;
end
whos D
Name Size Bytes Class Attributes D 1x1 8 double
whos B
Name Size Bytes Class Attributes B 15x1 120 double
D
D = 15
B
B = 15×1
0 0 0 0 0 0 0 0 0 0

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDictionaries についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by