Borrar filtros
Borrar filtros

How can I generalize this for loop?

1 visualización (últimos 30 días)
STamer
STamer el 12 de Jul. de 2013
My question is easy. How can I generalize this for loop?
-----------------------
for i=1:r
t(1)=(d(1))/total
t(2)=(d(2)+d(1))/total
t(3)=(d(3)+d(2)+d(1))/total
t(4)=(d(4)+d(3)+d(2)+d(1))/total
.
.
.
end
------------------------

Respuesta aceptada

Iain
Iain el 12 de Jul. de 2013
Whats wrong with?
t = cumsum(d)/total;

Más respuestas (2)

Thomas
Thomas el 12 de Jul. de 2013
Editada: Thomas el 12 de Jul. de 2013
a=1:9 % input
for ii=1:9
t(ii)=sum(a(1:ii))/sum(a);
end
t

Chandrasekhar
Chandrasekhar el 12 de Jul. de 2013
sum = 0;
for I = 1:r
sum = sum + d(I);
t(i) = sum/total;
end

Categorías

Más información sobre Logical 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!

Translated by