Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Not enough input arguments

조회 수: 2 (최근 30일)
ameen
ameen 2013년 6월 21일
마감: MATLAB Answer Bot 2021년 8월 20일
i want to calculate rpm when two values approximately the same TT and T
this is the code
function rpm =zzzzzz(modelspeed,modelresistance,propellerdiameter,density,wakefraction,thrustdeduction)
va=modelspeed*(1-wakefraction);
for rpm=100:2000;
T=modelresistance/(1-thrustdeduction);
j=va/((rpm./60)*propellerdiameter);
kt=0.37159*(1-(j/0.955))^0.8;
TT=kt*density*(rpm./60)^2*propellerdiameter^4;
kq=0.0476*(1-(j/1.0064))^0.7;
q=kq*density*(rpm./60)^2*propellerdiameter^5;
if TT(rpm)/T>0.999 %when T~T’%
rpm
return
end
end
when i run this code i receive an error message ' Not enough input arguments.' for the line of this equation
va=modelspeed*(1-wakefraction);
Best Regards, Ameen
  댓글 수: 2
Angus
Angus 2013년 6월 21일
what are modelspeed and wakefraction?
Angus
Angus 2013년 6월 21일
really not sure if it could be causing any problems but I would encourage you to not use the name of your function as a variable inside the function. Rather
function rpm_calc = zzzzzz(...)
...
for rpm = 100:200;
...
if TT(rpm)/T>0.999
rpm_calc = rpm;
return
...
Not sure if using rpm inside the function is somehow trying to call the function again?

답변 (2개)

Azzi Abdelmalek
Azzi Abdelmalek 2013년 6월 21일
zzzzzz is not a script it's a function, and should be called like below
out=zzzzzz(modelspeed,modelresistance,propellerdiameter,density,wakefraction,thrustdeduction)
  댓글 수: 5
Azzi Abdelmalek
Azzi Abdelmalek 2013년 6월 21일
Is the error message the same?
ameen
ameen 2013년 6월 21일
yes

Matt Tearle
Matt Tearle 2013년 6월 21일
The error message you're getting seems to indicate a problem with how you're calling the function, rather than the function itself. I copied the function exactly as you have it, then did this:
>> zzzzzz(1,2,3,4,5,6)
And I got a different error message, related to line 10 ( if TT(rpm)/T>0.999 ).
Call the function just as I did. If you get the same error message as before, you might need to do
which zzzzzz
to figure out which function/variable MATLAB is actually finding (because it must be a different one).
Now, there are other issues with the function -- pay attention to the Code Analyzer messages you get in the Editor. I think this is what you're trying to do:
function rpm =zzzzzz(modelspeed,modelresistance,propellerdiameter,density,wakefraction,thrustdeduction)
va=modelspeed*(1-wakefraction);
for rpm=100:2000;
T=modelresistance/(1-thrustdeduction);
j=va/((rpm./60)*propellerdiameter);
kt=0.37159*(1-(j/0.955))^0.8;
TT=kt*density*(rpm./60)^2*propellerdiameter^4;
if TT/T>0.999 %when T~T’%
return
end
end
There are prettier ways to do it, but that should work.

Community Treasure Hunt

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

Start Hunting!

Translated by