??? Too many input arguments Error

Hi everybody
[Coord,Edof,Ep]=bintranslate(available,chromosome,Dof,fixedcoord,na,nb,neft,nl,no,nn,numbitCoordX,numbitCoordY,numbitCoordZ,numbitEp,xspan,yspan,zspan);
all of the inputs are defined, please help.

4 件のコメント

per isakson
per isakson 2014 年 12 月 3 日
What does
which bintranslate -all
return?
Hamid
Hamid 2014 年 12 月 3 日
Coord,Edof,Ep
per isakson
per isakson 2014 年 12 月 3 日
That's not an output of which. It should look more like this
>> which bintranslate -all
'bintranslate' not found.
>> which plot -all
built-in (C:\Program Files\MATLAB\R2013a\toolbox\matlab\graph2d\plot)
C:\Program Files\MATLAB\R2013a\toolbox\matlab\timeseries\@timeseries
etc.
Hamid
Hamid 2014 年 12 月 3 日
thank you for helping me.
I attached bintranslate function.

サインインしてコメントする。

回答 (2 件)

Thorsten
Thorsten 2014 年 12 月 3 日

0 投票

Please double check that your function is called with 17 inputs.
Such a large number of inputs is error prone. Try do define the function with fewer arguments of higher dimension, e.g. span = [xspan, yspan, zspan];
per isakson
per isakson 2014 年 12 月 3 日
編集済み: per isakson 2014 年 12 月 4 日

0 投票

There are two errors in your call of the function
  • The function is defined with two output arguments, [Coord,Ep]. The call contains three [Coord,Edof,Ep]
  • The function has 16 input arguments. The call has 17. The difference is Dof
This call passes at least the check of the numbers of inputs and outputs
>> [Coord,Ep]=bintranslate(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16);
Warning: This concatenation operation includes an empty array with an
incorrect number of columns. ...
&nbsp
InputPreprocessor shows how I handle functions with many input arguments.

1 件のコメント

Andrew Reibold
Andrew Reibold 2014 年 12 月 3 日
Sometimes I wonder what would happen if people read the error messages

サインインしてコメントする。

カテゴリ

質問済み:

2014 年 12 月 3 日

編集済み:

2014 年 12 月 4 日

Community Treasure Hunt

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

Start Hunting!

Translated by