Effacer les filtres
Effacer les filtres

Error: This statement is incomplete

12 vues (au cours des 30 derniers jours)
Nicholas
Nicholas le 28 Sep 2014
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?

Réponse acceptée

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

Plus de réponses (0)

Catégories

En savoir plus sur Tires and Vehicles dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by