Borrar filtros
Borrar filtros

How to compare matrix of different dimensions?

2 visualizaciones (últimos 30 días)
Anonymous Matrix
Anonymous Matrix el 22 de Feb. de 2017
Comentada: Jan el 23 de Feb. de 2017
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 comentarios
Beder
Beder el 23 de Feb. de 2017
Editada: Beder el 23 de Feb. de 2017
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 el 23 de Feb. de 2017
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.

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Multidimensional Arrays en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by