Error: This statement is incomplete

12 次查看(过去 30 天)
Hello everybody, Trying to evaluate some basic lab data to do some analysis w/ MATLAB.
if true
% %%Import data, load in full blocks from left to right
uiimport('Lab1Data.xlsx')
Calculate Torque using T=Force * Moment Arm, Moment Arm = 6.0"
Arm=(6/39.37);
Torquelong=Favg.*Arm; %%1m=39.37"
Torqueshort=Favg1.*Arm; %%both units now N*m
Displays Torques
T=table(Favg,Torquelong,Favg1,Torqueshort)
"Calculate Power using Power = Torque * Angular Velocity."
"Angular Velocity = (Revolutions/second)*(2pi radians/1 Revolution)" "Units are N*m*rad/s, or Watts, so need to convert by 1hp=745.699872W"
Avlong=(revs./Time).*(2*pi);
Avshort=(revs1./Time1).*(2*pi);
Plong=(Torquelong.*Avlong)./745.699872
Pshort=(Torqueshort.*Avshort ./745.699872
end
When I run the last section, it says the statement is incomplete, even though it is just a section break marker. Any ideas?

采纳的回答

Star Strider
Star Strider 2014-9-28
You’re missing a parenthesis. See if it this improves things:
Pshort=(Torqueshort.*Avshort) ./745.699872

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Tires and Vehicles 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by