help with error "Reference to a cleared variable n"

2 vues (au cours des 30 derniers jours)
tyler hollings
tyler hollings le 15 Sep 2020
Commenté : tyler hollings le 15 Sep 2020
im trying to make a series that gives me n terms of the fibonaci series, ive got it to work like the pure code but now its having troble once i put it into a funtion file
function x = fib(n)
close all
clear all
x=create_array(1,n,1)
for i=1:n
x(i+2)=x(i)+x(i+1)
end
end
its having trouble with the variable n, also im calling a function inside this function so idk if this messes it up somehow?

Réponse acceptée

the cyclist
the cyclist le 15 Sep 2020
Putting
clear all
inside the function clears the variable n that you just sent into it. You don't need that line.
  1 commentaire
tyler hollings
tyler hollings le 15 Sep 2020
lol im an idiot sometimes i sweat haha thank you

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Large Files and Big Data dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by