For loop not working
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Leeba Ann Chacko
le 6 Juin 2022
Commenté : Leeba Ann Chacko
le 6 Juin 2022
I have a 2x4 matrix called A. I would like to find the sum of each column and divide each element in that column with the sum of that column. However, when I run the loop, the first 3 columns have no values in them. How do I rectify this? The following is my code:
A = rand(2,4)
for i=length(A)
B(:,i) = A(:,i)./sum(A(:,1));
end
0 commentaires
Réponse acceptée
VBBV
le 6 Juin 2022
Modifié(e) : VBBV
le 6 Juin 2022
A = rand(2,4)
for i=1:length(A) % using a single value
B(:,i) = A(:,i)./sum(A(:,i)); % divide each element with sum of that column
end
B
It seems you are using a single value in loop counter
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Loops and Conditional Statements 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!