how can i turn the results from a column into a row

1 view (last 30 days)
i have a for loop the calculates for X n number of times
the answers i get are in this format
X=1
x=2
x=3
x=4
x=5
i want it to look like
X=
1 2 3 4 5

Answers (1)

madhan ravi
madhan ravi on 23 Apr 2019
x = zeros(1,5); % for illustration purposes
for k = 1:5
x(k) = k;
end
  2 Comments
Omar Almahallawy
Omar Almahallawy on 23 Apr 2019
Edited: Omar Almahallawy on 23 Apr 2019
should this be inside my original for loop?
thanks in advance
madhan ravi
madhan ravi on 23 Apr 2019
Edited: madhan ravi on 23 Apr 2019
Inside loop, the same way I have illustrated.

Sign in to comment.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!