How to collect non-integers from for loop in one matrix?

1 view (last 30 days)
eg: for k=1:.5:10 y(k)=[k] end
this wont work i need output as y=1 1.5 2 2.5 and so on.

Accepted Answer

Azzi Abdelmalek
Azzi Abdelmalek on 1 Jul 2015
Edited: Azzi Abdelmalek on 1 Jul 2015
ii=0;
for k=1:.5:10
ii=ii+1
y(ii)=k
end
or
k=1:.5:10
for ii=1:numel(k)
y(ii)=k(ii)
end

More Answers (0)

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!