Filter löschen
Filter löschen

convert from cell to a number?

2 Ansichten (letzte 30 Tage)
Andy
Andy am 27 Sep. 2011
so i have this code,
for bbb = 1:counter countermatrix{bbb} = 0; end
when i compare countermatrix{1} to 0, it gave me a 0, which means no i think, why is this?
i use strcmp(0, countermatrix{1})
returns 0
thanks

Akzeptierte Antwort

Wayne King
Wayne King am 27 Sep. 2011
You mean:
for bbb = 1:10
countermatrix{bbb} = 0;
isequal(countermatrix{bbb},0)
end
  1 Kommentar
Andy
Andy am 27 Sep. 2011
yeah isequal was what i waas looking for

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Structures finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by