Community Profile

photo

Tanuj Monu


National Institute of Technology

Active since 2021

Followers: 0   Following: 0

Master's Student

Spoken Languages:
English, Hindi

Statistics

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

View badges

Feeds

View by

Answered
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

ongeveer 2 jaar ago | 0