필터 지우기
필터 지우기

How can I find the median of each element between 2 rows

조회 수: 1 (최근 30일)
Gucci
Gucci 2022년 4월 30일
댓글: Voss 2022년 4월 30일
Hello I am a bit new to MATLAB syntax and get confused
I have a matrix of size 3x10.
I want to find the median between each element in the first row, and each element in the second row.
How can I do this? I will need to end up with 10 median values

채택된 답변

Voss
Voss 2022년 4월 30일
% 3-by-10 matrix:
M = rand(3,10);
% median of each column:
median(M,1)
ans = 1×10
0.2939 0.2871 0.5671 0.8380 0.4499 0.5502 0.3408 0.9692 0.3886 0.3581
% 10-by-3 matrix:
M = rand(10,3);
% median of each row:
median(M,2)
ans = 10×1
0.8276 0.4754 0.6724 0.7976 0.4674 0.5106 0.6841 0.7998 0.5076 0.1331
  댓글 수: 4
Gucci
Gucci 2022년 4월 30일
Thank you
Voss
Voss 2022년 4월 30일
You're welcome!

댓글을 달려면 로그인하십시오.

추가 답변 (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