필터 지우기
필터 지우기

Too many inputs to inline function

조회 수: 2 (최근 30일)
Pramit Biswas
Pramit Biswas 2013년 6월 19일
편집: Anay Aggarwal 2022년 7월 12일
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
Pramit Biswas
Pramit Biswas 2013년 6월 19일
well i used this
x0=input(sprintf('x(0)=', '%g'))

댓글을 달려면 로그인하십시오.

답변 (1개)

Anay Aggarwal
Anay Aggarwal 2022년 7월 10일
편집: Anay Aggarwal 2022년 7월 12일
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

카테고리

Help CenterFile Exchange에서 Function Creation에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by