Community Profile

photo

Tanuj Monu


National Institute of Technology

2021 年からアクティブ

Followers: 0   Following: 0

Master's Student

Spoken Languages:
English, Hindi

統計

All
  • Scholar
  • MATLAB Central Treasure Hunt Finisher
  • First Answer
  • Draw Letters
  • Promoter
  • Introduction to MATLAB Master
  • CUP Challenge Master
  • Community Group Solver
  • Commenter
  • Solver

バッジを表示

Feeds

表示方法

回答済み
Fibonacci sequence with loop
function f = fib(n) f(1) = 1; f(2) = 1; for i = 3:n f(i) = f(i-1) + f(i-2); end f = f(end); end

約2年 前 | 0