isempty is allways zero

4 visualizzazioni (ultimi 30 giorni)
Nik Rocky
Nik Rocky il 27 Mag 2020
Commentato: Walter Roberson il 27 Mag 2020
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.

Risposta accettata

Fangjun Jiang
Fangjun Jiang il 27 Mag 2020
zero and empty are different
isempty([])
isempty(0)
isempty('')
  4 Commenti
Nik Rocky
Nik Rocky il 27 Mag 2020
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 il 27 Mag 2020
Yes.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by