how can i solve this error?
7 ビュー (過去 30 日間)
古いコメントを表示
Hi . i wanna write h(x) at a for loop. but i have error .

error is : '' Index in position 1 exceeds array bounds (must not exceed 1). "
x=1:0.1:6;
for i=1:0.1:6
h(i,:)=z2+(x(i,:)-ls)*z4;
end
0 件のコメント
採用された回答
Stijn Haenen
2020 年 5 月 18 日
編集済み: Stijn Haenen
2020 年 5 月 18 日
You should use this:
x=1:0.1:6;
for i=1:numel(x)
h(i,:)=z2+(x(i)-ls)*z4;
end
or even without ':'
x=1:0.1:6;
for i=1:numel(x)
h(i)=z2+(x(i)-ls)*z4;
end
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!