how to display in one variable the max of each one of two arrays?
1 回表示 (過去 30 日間)
古いコメントを表示
a=[5 10 15]
b=[20 25 30]
c= ?
0 件のコメント
採用された回答
その他の回答 (1 件)
Star Strider
2016 年 9 月 17 日
Concatenate the vectors inside the max function call:
a = [5 10 15];
b = [20 25 30];
c = max([a; b], [], 2)
c =
15
30
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Creating and Concatenating Matrices についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!