matlab, undefined function or method for input arguments of type double
7 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Andre
le 30 Jan 2014
Réponse apportée : Walter Roberson
le 30 Jan 2014
I have read many of the posts related to this type of problem, however, unlike all the posts I have read my input argument is not a function it is a variable. What is also odd is that this variable is called successfully a few times prior to this error. I assume the error is due to a syntax error somewhere in my code but I can't for the life of me see it. I get the error on the first call for the variable ta:
Tp(i+1)=Tp(i)+ds.*(5.*(-wp(i)*gamma-(aa.*wp(i).*(TT(i)-ta(i))...
/Rp(i))-2*(TT(i)-ta(i))*(hwa(i)-hwp(i))./(pi.*Rp(i)))...
+8.*(-wp(i)*gamma-aa.*wp(i).*(Tp(i)-Ta(i))/Rp(i)-2*...
(Tp(i)-ta(i))*(hwa(i)-hwp(i))/(pi.*Rp(i))));
but surprisingly I had no error just before this for this call:
TT(i)=Tp(i)+df.*(3.*(-wp(i)*gamma-(aa.*wp(i).*(Tp(i)-ta(i))/Rp(i))...
-2*(Tp(i)-ta(i))*(hwa(i)-hwp(i))./(pi.*Rp(i))));
I am stumped. Can anyone explain why I am getting this error in this case?
Mahalo!
Andre
1 commentaire
Réponse acceptée
Walter Roberson
le 30 Jan 2014
Your third line is the only one that refers to Ta with a capital T. The other references are to ta with a lower-case t.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Entering Commands 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!