MATLAB: Problem of for loop

for loop

this is my programme
for k=1:10
x(k)=sin(k)
end
now i want to add all the 10 values together

Best Answer

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)
Related Question