Help with a for loop and matrices

1 vue (au cours des 30 derniers jours)
Noah Wilson
Noah Wilson le 25 Juin 2019
I currently have this code where SizeChem is a 24x7 matrix and newcolum is a 24x1 matrix.
newcolumn = sum(SizeChem,2);
for i = 1:length(SizeChem)
T(i) = sum(newcolum(1:i,1));
end
I am wanting to create some arrays or variables that are the sum of the new column but summing one more row than the last. Then I want to take all those individual values and put them back into a matrix (24x1) starting with T{1} thru T{24}. I am also getting the error:
Undefined function or variable 'newcolum'.
Error in Analysis_plots (line 26)
T(i) = sum(newcolum(1:i,1));
I am not sure why this is. Thanks for the help in advanced.

Réponse acceptée

Rajat Gupta
Rajat Gupta le 25 Juin 2019
It should be newcolumn instead of newcolum in your loop body.

Plus de réponses (0)

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by