How to find the maximum value of the first column in multiple matrices?
5 ビュー (過去 30 日間)
古いコメントを表示
i have created a matrix, X = rand([6,3,6]);
Now i want to find maximum value of 1st column of each 6 matrices.How to solve this?
I have done this
Q=max(X(:,1));
but here i am able to get only the max value of 1st column of the 1st matrix. i want to find for each matrices. could anyone suggest me some hint?
0 件のコメント
採用された回答
Chunru
2021 年 7 月 29 日
X = rand([6,3,6]);
% find maximum value of 1st column of each 6 matrices
max(squeeze(X(:, 1, :)))
その他の回答 (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!