Array Indice Error For Loop
1 回表示 (過去 30 日間)
古いコメントを表示
Following code is coming up with error "Array indices must be positive integers or logical values."
Does someone know what is causing this. Trying to store each value into an array
z =@(x) tan(x);
h = 0.5
for x=1:0.5:10
Output (x) = (z(x+h)-z(x-h))/(2*h);
end
Array = [Output]
1 件のコメント
採用された回答
madhan ravi
2018 年 10 月 25 日
編集済み: madhan ravi
2018 年 10 月 25 日
z =@(x) tan(x);
h = 0.5
x=1:0.5:10
Output = zeros(1,19) %preallocation for speed and efficiency
for i = 1:numel(x)
Output (i) = (z(x(i)+h)-z(x(i)-h))/(2*h);
end
Array = Output
3 件のコメント
Stephen23
2018 年 10 月 25 日
@madhan ravi: where is the array preallocation? What do those square brackets do? (Hint: nothing)
その他の回答 (0 件)
参考
カテゴリ
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!