필터 지우기
필터 지우기

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 CenterFile Exchange에서 Dictionaries에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by