What is wrong with this sequence?
2 ビュー (過去 30 日間)
古いコメントを表示
I was given this code to figure out what is wrong with it, but cannot figure it out.
if true
% code
% Evaluate a sequence
% x_i = 4 * x_i-1 + 2 * x_i - 2
x = zeros(1,30);
x(1) = 10;
x(2) = 20;
for k = 1:length(x);
x(k) = 2.*x(k-2)-3.*x(k-1);
end
end
1 件のコメント
回答 (1 件)
Azzi Abdelmalek
2015 年 8 月 11 日
編集済み: Azzi Abdelmalek
2015 年 8 月 11 日
When k=1, k-2 is negative, and k-1 is equal to zero
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!