photo

Tanuj Monu


National Institute of Technology

Active since 2021

Followers: 0   Following: 0

Master's Student

Spoken Languages:
English, Hindi

Statistics

All
MATLAB Answers

0 Questions
1 Answer

Cody

0 Problems
511 Solutions

RANK
102,939
of 300,392

REPUTATION
0

CONTRIBUTIONS
0 Questions
1 Answer

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
0

RANK
 of 20,933

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK
224
of 168,335

CONTRIBUTIONS
0 Problems
511 Solutions

SCORE
6,389

NUMBER OF BADGES
19

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • 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

4 years ago | 0