Trying to Solve quadratic inequalities
조회 수: 4 (최근 30일)
이전 댓글 표시
Athanasios Paraskevopoulos
2023년 12월 31일
댓글: Athanasios Paraskevopoulos
2023년 12월 31일
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
채택된 답변
추가 답변 (1개)
John D'Errico
2023년 12월 31일
편집: John D'Errico
2023년 12월 31일
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.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!