Matrix Averaging
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi, I'm trying to do something very simple, but can't seem to get the if condition correct.
I want to find the average of (:,2:5) if the values in the first column of the matrix are below a certain average.
Thanks in advance,
Ready to be humbled---
0 commentaires
Réponse acceptée
Matt Fig
le 13 Avr 2011
If A is your matrix and tol stands for "a certain average,"
if mean(A(:,1))<tol
M = mean(A(:,2:5));
end
0 commentaires
Plus de réponses (1)
Sean de Wolski
le 13 Avr 2011
A = rand(5);
A1 = A(:,1);
A1(A1>.5) = mean(A(A1>.5,2:5),2)
Like this? If not, please provide a small example.
0 commentaires
Voir également
Catégories
En savoir plus sur Creating and Concatenating Matrices 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!