Help solving this problem?
1 回表示 (過去 30 日間)
古いコメントを表示
I was wondering if anyone could lend me a hand in starting to solve this question? im relatively new to the program.
0 件のコメント
採用された回答
cater re
2019 年 12 月 4 日
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))
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Array Geometries and Analysis についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!