In MATLAB when you see this error, It means you call a function with many inputs.
for example :
You have the following function :
y = myfun(a,b)
y = a + b;
When you call this function :
>> myfun (3,5,7)
This error happens.
But if you type :
>> myfun(6,7)
13
Too many input arguments.
Re: Too many input arguments.
In MATLAB when you see this error, It means you call a function with many inputs.
for example :
You have the following function :
y = myfun(a,b)
y = a + b;
When you call this function :
>> myfun (3,5,7)
This error happens.
But if you type :
>> myfun(6,7)
13
Top
for example :
You have the following function :
y = myfun(a,b)
y = a + b;
When you call this function :
>> myfun (3,5,7)
This error happens.
But if you type :
>> myfun(6,7)
13
Top
Who is online
Users browsing this forum: No registered users and 193 guests