How can you display a null/empty matrix?

조회 수: 4 (최근 30일)
Smith
Smith 2014년 3월 14일
답변: Benjamin Avants 2014년 3월 14일
is this a way? M = [ ] disp(M)
  댓글 수: 1
dpb
dpb 2014년 3월 14일
Did you try it?
What do you want displayed and in what context?

댓글을 달려면 로그인하십시오.

답변 (1개)

Benjamin Avants
Benjamin Avants 2014년 3월 14일
Your method won't display anything. You can remove the semicolon from the line that assigns a value to M and it will display like this:
M = []
M =
[]
If you want to test if it is empty use something like the following:
M = [];
if isempty(M)
disp('M is empty')
end

카테고리

Help CenterFile Exchange에서 Logical에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by