problem of for loop

1 visualización (últimos 30 días)
mahesh chathuranga
mahesh chathuranga el 9 de Sept. de 2013
this is my programme
for k=1:10
x(k)=sin(k)
end
now i want to add all the 10 values together

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 9 de Sept. de 2013
Editada: Azzi Abdelmalek el 9 de Sept. de 2013
If you mean to sum all the values use
for k=1:10
x(k)=sin(k)
end
out=sum(x)
%or without a for loop
k=1:10
x=sin(k)
out=sum(x)
  1 comentario
mahesh chathuranga
mahesh chathuranga el 9 de Sept. de 2013
thank you very very much

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Loops and Conditional Statements en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by