Effacer les filtres
Effacer les filtres

Error:Unexpected MATLAB expression.

1 vue (au cours des 30 derniers jours)
Karel
Karel le 1 Août 2012
Part o f a program I am writing goes as folows:
if(y2(i)>y1(i))
ntra=ceil((y2(i)-y1(i))/h;
htra=(y2(i)-y1(i))/ntra;
y=[y1(i):htra:y2(i)];
x=xtab(i);
ytabtra=eval(f);
The definition of f beeing:
temp=input('veuillez encoder la fonction principale f(x,y):','s');
f= vectorize(temp);
I tested it with the input '3x+y'
When I programed this yesterday, everything worked, but when I tried again today I get:
??? Error: Unexpected MATLAB expression.
Error in ==> principal_1 at 45
ytabtra=eval(f);
Could anybody help me please?

Réponse acceptée

Image Analyst
Image Analyst le 1 Août 2012
Modifié(e) : Image Analyst le 1 Août 2012
Well, what if "f"? You never assigned anything to it, so when it gets to eval(f) it doesn't know what f is. What were you intending? Are you sure that your code assigning f actually was run before you hit the eval statement? Set a breakpoint there to check and make sure f has some string value.
  1 commentaire
Karel
Karel le 1 Août 2012
actually, it was a stupid oversight of my part: instead of entering 3*x+y, I entered 3x+y, which the program didn't recognise, Sorry to have botered you.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Function Creation dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by