Community Profile

photo

Adnan


Last seen: 3 dagar ago Active since 2024

Followers: 0   Following: 0

Statistics

  • Thankful Level 2

View badges

Feeds

View by

Question


Could I get any help with this infinite recursion?
function [F] =fibonacci(n) if n == 0 F = 0; elseif n == 1 F = 1; elseif n>1 F = fibonacci (n-1) + fibonacci(n...

30 dagar ago | 1 answer | 0

1

answer

Question


Making a table in matlab
I have three vectors in 1x9 form and i am trying to make a table with them but when I do it, it displays 1x9 double

3 månader ago | 1 answer | 0

1

answer