Error using myfun (line 15) Not enough input arguments.

Hi can anybody help me to figure out what's wrong with this function? It keeps giving me the error: Error using myfun (line 15) Not enough input arguments.
Thank you so much
function S = myfun(c1,L_UC,L_US)
global r s
%Compression
if r==0;
lam1 = L_UC+1;
lam2 = 1./lam1;
lam3 = 1./lam1;
lam1sq=lam1.^2;
lam2sq=lam2.^2;
lam3sq=lam3.^2;
I1 = (lam1sq+lam2sq+lam3sq);
%Simple shear
else s=0;
lam1 = L_US+1;
lam2 = 1.;
lam3 = 1.;
lam1sq=lam1.^2;
lam2sq=lam2.^2;
lam3sq=lam3.^2;
I1 = (lam1sq+lam2sq+lam3sq);
end
S= c1.*(I1-3);

 채택된 답변

Sean de Wolski
Sean de Wolski 2013년 10월 10일
편집: Sean de Wolski 2013년 10월 10일
How are you calling it? Are you are just pressing the play button (green triangle), then no inputs are passed to myfun. You need to call it with the expected inputs:
>>myfun(c1,L_UC,L_US)
Or if you do want to use the green play button, you need to set up run configurations or defaults. This can be done two ways: by clicking on the down arrow next to the play button and inserting the code you wish to run, i.e.:
myfun(c1,L_UC,L_US)
Or by putting defaults into your function. I.e. making the first line check if any inputs were provided and if they weren't, assigning them:
if ~nargin
%no inputs
c1 = pi;
L_UC = 10;
L_US = 'hello world';
end

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Argument Definitions에 대해 자세히 알아보기

제품

질문:

2013년 10월 10일

편집:

2013년 10월 10일

Community Treasure Hunt

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

Start Hunting!

Translated by