Community Profile

photo

Tanuj Monu


National Institute of Technology

Aktiv seit 2021

Master's Student

Spoken Languages:
English, Hindi

Statistiken

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

Abzeichen anzeigen

Content Feed

Anzeigen nach

Beantwortet
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

etwa 2 Jahre vor | 0