Info
この質問は閉じられています。 編集または回答するには再度開いてください。
how make this eq.
2 ビュー (過去 30 日間)
古いコメントを表示
hi please can tell me how make this eq. in matlab

where n start from 2 , m&c constant value
回答 (1 件)
Payam Morsali
2020 年 10 月 18 日
for series you can set a variable to zero and iterate the sum:
fibonacci for example:
a(1)=1
a(2)=1
for i=3:n
a(i)=a(i-1)+a(i-2)
end
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!