plot to find root Error: Unbalanced or unexpected parenthesis or bracket

1 Ansicht (letzte 30 Tage)
>> v0 = 20; x = 35; y0 = 2; y = 1; g = 9.81;
theta0 = linspace(0,90);
ftheta0 = tan(theta0)*x-(g/(2*v0^2*cos^2(theta0))*x^2)+y0-y;
??? ftheta0=tan(theta0)*x-(g/(2*v0^2*cos^2(theta0))*x^2)+y0-y;
|
Error: Unbalanced or unexpected parenthesis or
bracket.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 4 Mär. 2016
Bearbeitet: Walter Roberson am 4 Mär. 2016
MATLAB does not support the syntax cos^2(theta0) to mean the square of the cos of theta0. You need to use cos(theta0).^2

Weitere Antworten (1)

Joachim Schlosser
Joachim Schlosser am 4 Mär. 2016
MATLAB will point you exactly to where it cannot cope with the input. There is a "*" missing in 2(theta0).

Kategorien

Mehr zu Line Plots finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by