Trying to Solve quadratic inequalities
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Athanasios Paraskevopoulos
el 31 de Dic. de 2023
Comentada: Athanasios Paraskevopoulos
el 31 de Dic. de 2023
Hello, I am a new user of Matlab and I am trying to solve the following inequality
I tried to solve it with the code bellow and as you can see the result is wrong. I am seeking for intervals. What should I do?
syms x
ineq = x^2-2*x+7>12;
sol = solve(ineq, x)
0 comentarios
Respuesta aceptada
Más respuestas (1)
John D'Errico
el 31 de Dic. de 2023
Editada: John D'Errico
el 31 de Dic. de 2023
syms x
ineq = x^2-2*x+7>12;
sol = solve(ineq, x,'returnconditions',true)
sol.x
sol.conditions
The result is two half-infinite intervals.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!