필터 지우기
필터 지우기

During compiling came across error 'too many input arguments'

조회 수: 1 (최근 30일)
SHIJINA P P
SHIJINA P P 2016년 5월 24일
답변: SHIJINA P P 2016년 5월 25일
Program is solving second order differential equation using fourth order runga kutta method. Sliding mode control program is used as the controller. Error in line 15.

채택된 답변

Walter Roberson
Walter Roberson 2016년 5월 24일
You should get rid of the "clear all": it can only cause you problems inside functions.
Your line 15 has
control(state,time)
which shows the routine named control called with a state and a time. But further down you define the function control as taking a single argument named x not with two arguments.
  댓글 수: 4
Walter Roberson
Walter Roberson 2016년 5월 24일
Your code passes time to Derivatives but Derivatives does not expect a second argument.
You are not using time in Derivatives so you probably do not need to pass it if your Derivatives routine is correct.
I see in your revised code that in your first call to control, you pass the entire vector of time but in all your other calls to control you pass only a variant of the current time, such as time(idx) plus something. This is inconsistent and hints at a logic error in your code.
On the other hand, your control function ignores the time that it is being passed so there is no point in passing the time if your control routine is correct.

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

추가 답변 (1개)

SHIJINA P P
SHIJINA P P 2016년 5월 25일
I got it, Thank you sir.

카테고리

Help CenterFile Exchange에서 Numerical Integration and Differential Equations에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by