can you help please

1 vue (au cours des 30 derniers jours)
Mike
Mike le 6 Avr 2015
Commenté : Star Strider le 7 Avr 2015
I have this code (attached)
it keeps giving me error message saying:
Error using @(y)((-0.02^2)*sqrt(2*(9.81)*y))/(2*4*y-(y^2)) Too many input arguments.

Réponses (1)

Star Strider
Star Strider le 6 Avr 2015
The problem is in this (and similar) lines:
y1(i+1) = y1(i) + f(t(i),y1(i))*h;
You are passing your ‘f’ function 2 arguments when it only takes one.
  2 commentaires
Mike
Mike le 6 Avr 2015
Can you help me on how i can avoid this error
Star Strider
Star Strider le 7 Avr 2015
You already have ‘t’ defined as a vector, so I don’t know why you need it as input to your function, since you’re not using it there.
One possibility:
y1(i+1) = y1(i) + f(y1(i))*h;
and so with the others. That should at least run without problems (I didn’t test it). See if it improves your code.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Testing Frameworks 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