How to compare the length of two matrices and pick the shorter one?
3 ビュー (過去 30 日間)
古いコメントを表示
have two nx1 matrices that I want to say for whichever matrix is shorter use that length.
0 件のコメント
採用された回答
Walter Roberson
2016 年 8 月 15 日
shorter_length = min( length(FirstVector), length(SecondVector) );
0 件のコメント
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Multidimensional Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!