Effacer les filtres
Effacer les filtres

How to compare matrix of different dimensions?

2 vues (au cours des 30 derniers jours)
Anonymous Matrix
Anonymous Matrix le 22 Fév 2017
Commenté : Jan le 23 Fév 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 commentaires
Beder
Beder le 23 Fév 2017
Modifié(e) : Beder le 23 Fév 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 le 23 Fév 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.

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Multidimensional Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by