feval problem Too many inputs to inline function.
Afficher commentaires plus anciens
a=0
b=2
y=5
x=1/2
f1=inline('(1+x^2)/(sqrt(x)+3)')
f2=inline('(1+x^2)/(sqrt(x)+3)')
f3=inline('(1+x^2)/(sqrt(x)+3)')
f4=inline('(1+x^2)/(sqrt(x)+3)')
f1=feval(f1,x)
f2=feval(f2,a,b,x)
f3=feval(f3,x,y)
f4=feval(f4,a,x,b,y)
i see this problem
??? Error using ==> inline.feval at 26
Too many inputs to inline function.
Too many inputs to inline function.
Error in ==> Untitled3 at 10
f2=feval(f2,a,b,x)
how can i fix it
Réponses (2)
JESUS DAVID ARIZA ROYETH
le 4 Déc 2019
a=0
b=2
y=5
x=1/2
f1=inline('(1+x^2)/(sqrt(x)+3)')
f2=inline('(1+x^2)/(sqrt(x)+3)')
f3=inline('(1+x^2)/(sqrt(x)+3)')
f4=inline('(1+x^2)/(sqrt(x)+3)')
f1=f1(x)
f2=f2(x)
f3=f3(x)
f4=f4(x)
x=1/2;
f1=@(x) (1+x^2)/(sqrt(x)+3);
f1value=f1(x)
When you use inline() [which should be only if you have a need to prove that you can use inline], then you should define all of the variables you expect to use in the function, and their order.
a=0
b=2
y=5
x=1/2
f1=inline('(1+x^2)/(sqrt(x)+3)', 'x')
f2=inline('(1+x^2)/(sqrt(x)+3)', 'a', 'b', 'x')
f3=inline('(1+x^2)/(sqrt(x)+3)', 'x', 'y')
f4=inline('(1+x^2)/(sqrt(x)+3)', 'a', 'x', 'b', 'y')
f1=feval(f1,x)
f2=feval(f2,a,b,x)
f3=feval(f3,x,y)
f4=feval(f4,a,x,b,y)
Catégories
En savoir plus sur Function Creation dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!