isempty is allways zero
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Nik Rocky
am 27 Mai 2020
Kommentiert: Walter Roberson
am 27 Mai 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.
0 Kommentare
Akzeptierte Antwort
Fangjun Jiang
am 27 Mai 2020
zero and empty are different
isempty([])
isempty(0)
isempty('')
4 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Argument Definitions finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!