Calling out from for loop

2 ビュー (過去 30 日間)
Jane Smith
Jane Smith 2021 年 6 月 4 日
コメント済み: Jane Smith 2021 年 6 月 4 日
for i=0:7
i=fibonacci(sym(i+1))
end
I have this for loop and i want to call out the 6th term so i put it in an equation.
Can it be done?
  2 件のコメント
Rik
Rik 2021 年 6 月 4 日
What do you mean? What is your goal? Can you explain it a bit more?
Jane Smith
Jane Smith 2021 年 6 月 4 日
I am trying to create the fibonacci search method from scratch. So in my mind i pictured of first output the sequence with this for loop then when working out the method, you need for example F_6=13 to use in the method's equation.
I want to take the 6'th i termn and used its answer.
before i tried it with f(n)=fibonacci(sym(n+1)) but it did not work.

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

採用された回答

Dyuman Joshi
Dyuman Joshi 2021 年 6 月 4 日
f = @(n)fibonacci(n)
f(6) =
8
  1 件のコメント
Jane Smith
Jane Smith 2021 年 6 月 4 日
Perfect! Thank you.

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by