フィルターのクリア

understanding MATLAB method in long equation

1 回表示 (過去 30 日間)
Abdullah Sultan
Abdullah Sultan 2021 年 12 月 15 日
コメント済み: Abdullah Sultan 2021 年 12 月 16 日
this the orginal equation
and this is the equation code
fn= 1/sqrt(5) * ( ( (1+sqrt(5)) / 2 )^n - (1-sqrt(5)/2).^n )
just to understand matlab proccess, why in the first (1+sqrt(5)) part we should put () more than the second part (1-sqrt(5)/2) even though they are the same side
to be more clear I make the () bold to mention why here we should make more () the other side
fn= 1/sqrt(5) * ( ( (1+sqrt(5)) / 2 )^n - (1-sqrt(5)/2).^n )

採用された回答

Voss
Voss 2021 年 12 月 15 日
編集済み: Voss 2021 年 12 月 15 日
The 1-sqrt(5) needs parentheses around it too.
  3 件のコメント
Voss
Voss 2021 年 12 月 15 日
編集済み: Voss 2021 年 12 月 15 日
(1+sqrt(5)) / 2 means: add 1 to the square root of 5 and divide the result by 2.
1+sqrt(5) / 2 means: divide the square root of 5 by 2 and add one to the result.
The parentheses are necessary to treat the whole expression 1+sqrt(5) as the numerator of a fraction in the equation.
Abdullah Sultan
Abdullah Sultan 2021 年 12 月 16 日
thank you again , your explanation is very useful ,
best regards

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by