Clear Filters
Clear Filters

What is wrong with this sequence?

1 view (last 30 days)
Mark Dillon
Mark Dillon on 11 Aug 2015
Edited: Azzi Abdelmalek on 11 Aug 2015
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 Comment
Cedric
Cedric on 11 Aug 2015
Edited: Cedric on 11 Aug 2015
What happens when k is equal to 1 or 2 ?

Sign in to comment.

Answers (1)

Azzi Abdelmalek
Azzi Abdelmalek on 11 Aug 2015
Edited: Azzi Abdelmalek on 11 Aug 2015
When k=1, k-2 is negative, and k-1 is equal to zero

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Tags

Products

Community Treasure Hunt

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

Start Hunting!