finding nth value of formula with conditions

1 回表示 (過去 30 日間)
asaf omer
asaf omer 2020 年 5 月 1 日
コメント済み: KSSV 2020 年 5 月 1 日
hello,
can u guys please help me finding nth value by using the next formula:
a(0)=2
a(1)=3
a(n)=(1-a(n-1))/a(n-1) +a(n-2)
thanks!

回答 (1 件)

KSSV
KSSV 2020 年 5 月 1 日
編集済み: KSSV 2020 年 5 月 1 日
n = 10 ; % size of the array
a = zeros(n,1) ; % Initialize the array
a(1)=2 ; % value at n = 1
a(2)=3 ; % value at n = 2
% loop to get each value
for i = 3:n
a(i)=(1-a(i-1))/a(i-1) +a(i-2) ; % the formula you have given
end
  2 件のコメント
asaf omer
asaf omer 2020 年 5 月 1 日
thanks a lot , can u please teach how you did that?
KSSV
KSSV 2020 年 5 月 1 日
I have commented the steps......thanks is accepting the asnwer. :)

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by