フィルターのクリア

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

2 ビュー (過去 30 日間)
Aditya Palsule
Aditya Palsule 2015 年 7 月 1 日
コメント済み: Jan 2015 年 7 月 1 日
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.

採用された回答

Azzi Abdelmalek
Azzi Abdelmalek 2015 年 7 月 1 日
編集済み: Azzi Abdelmalek 2015 年 7 月 1 日
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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by