What is wrong with my solve function?
Ältere Kommentare anzeigen
This is an example from the solve documentation, however my matlab isn't getting the same output as the example. Does anyone know why this is happening? The output is supposed to be solx=pi/2
Matlab Code:
syms x
eqn = sin(x) == 1;
solx = solve(eqn,x)
x =
x/sin(x) == x
solx =
x/sin(x) == x
Antworten (2)
Steven Lord
am 21 Okt. 2016
0 Stimmen
Did you previously define a variable named sin that's taking precedence over the built-in sin function? You can check this using the which function.
1 Kommentar
Jarren Suzuki
am 24 Okt. 2016
Run only the first half of it. x has to be symbolic.
if true
syms x
eqn = sin(x) == 1;
solx = solve(eqn,x)
end
Kategorien
Mehr zu Calculus finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!