Filter löschen
Filter löschen

Too many inputs to inline function

3 Ansichten (letzte 30 Tage)
Pramit Biswas
Pramit Biswas am 19 Jun. 2013
Bearbeitet: Anay Aggarwal am 12 Jul. 2022
fcnstr=input('Put Desired Function: dy/dx=', 's') ; f=inline(fcnstr) ;
x0=input('x(0)=') ;
y0=input('y(0)=') ;
xf=input('x(f)=') ;
n=2 ;
h=(xf-x0)/n
%~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
format long g
xa(1)=x0 ;
ya(1)=y0 ;
for i=1:n
xa(i+1)=xa(i)+h ;
k1 = h*f(xa(i),ya(i));
gives error:
"??? Error using ==> inline.subsref at 17
Too many inputs to inline function.
Error in ==> FODESu4oRKv1 at 43
k1 = h*f(xa(i),ya(i));"
  1 Kommentar
Pramit Biswas
Pramit Biswas am 19 Jun. 2013
well i used this
x0=input(sprintf('x(0)=', '%g'))

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Anay Aggarwal
Anay Aggarwal am 10 Jul. 2022
Bearbeitet: Anay Aggarwal am 12 Jul. 2022
Hi Pramit
I have an understanding that you want to make use of the inline function in your code; but you are not able to and it is giving an error "Too many inputs to inline function".
You need to specify the variables (and the order of the variables) explicitly when you use inline().
See the bottom example in the reference page:
Regards

Kategorien

Mehr zu Function Creation finden Sie in Help Center und File Exchange

Tags

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by