Is there a command of "not less than or equal to " to vectors?
16 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
採用された回答
Azzi Abdelmalek
2013 年 3 月 12 日
all(a<=b)
7 件のコメント
Walter Roberson
2013 年 3 月 12 日
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.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!