フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

I want to make fibonacci series by this way, but there is some error in my code (I think in sum line), can someone point ?

1 回表示 (過去 30 日間)
Sameed Quais
Sameed Quais 2019 年 11 月 18 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
clear all
clc
n=20;
f=0;
for i=1:n
for i=1
f(i)=0;
end
for i=2
f(i)=1;
end
f(i:n)=sum(f);
end
f
75573791_399777687595206_948524204263735296_n.png
74917391_506001480322486_8562696738337456128_n.png
  1 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 11 月 18 日
編集済み: James Tursa 2019 年 11 月 18 日
Please do read here array indexing
n=20;
f=zeros(1,n);
f(1)=1;
f(2)=1;
for i=3:length(f)
f(i)=f(i-2)+f(i-1);
end
f
Please note: Without understanding the code, it has no meaning in your learning, hence I requested you to modify it and see the different results.

回答 (0 件)

この質問は閉じられています。

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by