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 Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by