sum inside a for loob
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
hi everyone, I was wondering how to sum my calculation inside loop. here is a simple code:
%
for i=1:5
a = price1 * i;
b =sum(a)
%
so how to sum a, when i type like this it gives result (b=a) for every times. It does not add(sum) all of the results
Respuesta aceptada
Jan
el 23 de Jul. de 2013
b = 0;
for k = 1:5
a = price1 * k;
b = b + sum(a); % Or b = b + a?
end
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!