plot y(i)

[EDIT: 20110513 13:39 CDT - reformat - WDR]
hi,
i have this sum:
for i=2:200
y=y+i;
how i can use plot to trace y=f(i)
thanks in advance

Respuestas (1)

Walter Roberson
Walter Roberson el 13 de Mayo de 2011

1 voto

y = cumsum(2:200);
plot(y)
Or, using the for loop
x = 2:200;
numx = length(x);
y = zeros(numx,1);
ty = 0;
for i = 1:numx
ty = ty + x(i);
y(i) = ty;
end
plot(y)

6 comentarios

mouna
mouna el 13 de Mayo de 2011
yes; thank you very much
bym
bym el 13 de Mayo de 2011
you might also "accept" the answer
mouna
mouna el 17 de Mayo de 2011
good morning,
for example in this same equation how i can plot 3 slabs (y1,y2,y3) in the same graph??
Robert Cumming
Robert Cumming el 17 de Mayo de 2011
hold on
Jan
Jan el 17 de Mayo de 2011
plot(y1); hold('on'); plot(y2); plot(y3)
Walter Roberson
Walter Roberson el 17 de Mayo de 2011
Or,
plot(x,y1,x,y2,x,y3)

Iniciar sesión para comentar.

Categorías

Más información sobre 2-D and 3-D Plots en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 13 de Mayo de 2011

Community Treasure Hunt

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

Start Hunting!

Translated by