Is there a command of "not less than or equal to " to vectors?
17 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi, want to know if there is a command can compare if two vectors a is not <=b? Now I use while sum(le(a,b))~=N while N is the size of vector. However it is very inconvenient.
Thanks.
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 12 Mär. 2013
all(a<=b)
7 Kommentare
Walter Roberson
am 12 Mär. 2013
No there isn't.
If I recall correctly, someone did submit a MEX routine to do vector comparisons, but unfortunately I cannot seem to locate it at the moment.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical 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!