Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I am new to MATLAB and am trying to run a simple Fibonacci function but keep getting the error on line 4, Not enough input
I am new to MATLAB and am trying to run a simple Fibonacci function but keep getting the error on line 4, "Not enough input arguments." here is what I have
function f = fibonacci(n) % FIBONACCI Fibonacci sequence % f = FIBONACCI(n) generates the first n Fibonacci numbers. f = zeros(n,1); f(1) = 1; f(2) = 2; for k = 3:n f(k) = f(k-1) + f(k-2);
end
fibonacci(12)
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started