equality between different number of variables problem
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I have a cell array and the size is changing. but I want to know wether all the cells are equal.
Yes, if the size of the cell are determined, I could use 'isequal' function, but in my situation they are not determined, sometimes 3, sometimes 5, sometimes even 100. I could write a for-loop to identify them one by one. but I want know, is there any easier way to do this?
Bests
Yu
0 Kommentare
Akzeptierte Antwort
Stephen23
am 13 Mär. 2019
Where C is your cell array:
isequal(C{:})
Learn how this works by reading the isequal documentation, and these:
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Variables 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!