Info
This question is closed. Reopen it to edit or answer.
For-loop in Matlab
1 view (last 30 days)
Show older comments
Hei!
I have the following for-loop:
for c=(1:10)
x=sind(c)
end
disp(x)
How can I get all values of x as a row vector? Matlab gives me values of x separately from each other. I want to combine them all together.
Sergey
2 Comments
Answers (1)
Nobel Mondal
on 16 May 2015
Edited: Nobel Mondal
on 16 May 2015
You don't even need a for loop
c = 1:10;
x = sind(c);
0 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!