isempty is allways zero

4 ビュー (過去 30 日間)
Nik Rocky
Nik Rocky 2020 年 5 月 27 日
コメント済み: Walter Roberson 2020 年 5 月 27 日
Hello,
im using isempty:
TP =
0 0 0
>> isempty(TP)
ans =
logical
0
>> TP(3) = 1
TP =
0 0 1
>> isempty(TP)
ans =
logical
0
Why is locical answer still zero? What can I do? I need to check multiple arrays for empty or not in if-else blocks.

採用された回答

Fangjun Jiang
Fangjun Jiang 2020 年 5 月 27 日
zero and empty are different
isempty([])
isempty(0)
isempty('')
  4 件のコメント
Nik Rocky
Nik Rocky 2020 年 5 月 27 日
TP1 =
0 0 0
>> TP2 = [0 1 0]
TP2 =
0 1 0
>> any(TP1)
ans =
logical
0
>> any(TP2)
ans =
logical
1
Right?
Walter Roberson
Walter Roberson 2020 年 5 月 27 日
Yes.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by