Help solving this problem?
1 view (last 30 days)
Show older comments
Bailey Owen Banks
on 4 Dec 2019
Commented: Bailey Owen Banks
on 7 Dec 2019
I was wondering if anyone could lend me a hand in starting to solve this question? im relatively new to the program.
0 Comments
Accepted Answer
cater re
on 4 Dec 2019
an(1) = 2
an(2) = 5
total = 0
for i=3:100
an(i) = an(i-1) + 2*an(i-2)
total = total + an(i)
end
plot(3:100, an(3:100))
More Answers (0)
See Also
Categories
Find more on Array Geometries and Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!