필터 지우기
필터 지우기

How to obtain max value form Matrix A B C , and write to Matrix D

조회 수: 5 (최근 30일)
PRED LIU
PRED LIU 2020년 5월 18일
답변: Star Strider 2020년 5월 18일
How to obtain max value form Matrix A B C , and write to Matrix D ,as below
Matrix A
1 1 6
1 17 1
23 18 1
Matrix B
3 8 3
18 20 3
3 21 3
Matrix C
10 2 2
2 2 24
2 2 25
%%%%%%%%%%%%%%%%%
Matrix D
10 8 6
18 20 24
23 21 25

채택된 답변

Star Strider
Star Strider 2020년 5월 18일
First use the cat function to concatenate them, then use the max function over the third dimension:
D = max(cat(3, Matrix_A, Matrix_B, Matrix_C),[],3)
producing:
D =
10 8 6
18 20 24
23 21 25
.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by