How to find the maximum value of the first column in multiple matrices?

조회 수: 12 (최근 30일)
chan
chan 2021년 7월 29일
댓글: chan 2021년 7월 29일
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?

채택된 답변

Chunru
Chunru 2021년 7월 29일
X = rand([6,3,6]);
% find maximum value of 1st column of each 6 matrices
max(squeeze(X(:, 1, :)))
ans = 1×6
0.5877 0.9588 0.8799 0.8142 0.8901 0.9446

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Multidimensional Arrays에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by