필터 지우기
필터 지우기

How to compare matrix of different dimensions?

조회 수: 2 (최근 30일)
Anonymous Matrix
Anonymous Matrix 2017년 2월 22일
댓글: Jan 2017년 2월 23일
I've read the other posts regarding this problem and I'm kinda confused on how to compare 2 matrices of different dimensions. Say I have this code where the array ww is a 43x1 and the array w3 ended up being 20x1
ww=mean(array1,2)
w1=mean(array2,2)
w2=mean(array2,2)>5
w3=w1(w2)
w5=ww<w3
How can get the statement w5=ww<w3 to work (ie. compare those arrays)?
  댓글 수: 4
Beder
Beder 2017년 2월 23일
편집: Beder 2017년 2월 23일
I assume you want to have w3 containing the elements where the mean of array2 is >5. To achieve this you can use logical indexing:
w2(w1>5)=w1;
w5=ww<w2
is that what you wanted?
Jan
Jan 2017년 2월 23일
If the array has the size [43 x 1], the command mean(array, 2) does not do anything. Please give a small example with example data to explain, what you want to calculate. Seeing not working code is not enough to reconsider your intention.

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

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