For loop not working
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Leeba Ann Chacko
am 6 Jun. 2022
Kommentiert: Leeba Ann Chacko
am 6 Jun. 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 Kommentare
Akzeptierte Antwort
VBBV
am 6 Jun. 2022
Bearbeitet: VBBV
am 6 Jun. 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
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!