How to solve an inequality

1 visualización (últimos 30 días)
Xuanhan 朱
Xuanhan 朱 el 3 de Jun. de 2021
Comentada: Xuanhan 朱 el 3 de Jun. de 2021
The inequality goes as follow, is it possible to solve for x.
15x-15+0.41*[sqrt(1/60516+1/123*(15x-2.9))-1/246]^2*3000<2.9
I'm not very familiar with using MATLAB, I hope that someone can teach me on this.
Any kind of help is appreciated.

Respuesta aceptada

David Hill
David Hill el 3 de Jun. de 2021
f=@(x)15*x-15+0.41*(sqrt(1/60516+1/123*(15*x-2.9))-1/246)^2*3000-2.9;
g=@(x)1/60516+1/123*(15*x-2.9);
x=[fzero(g,.2),fzero(f,.3)];%x must be between these values
  1 comentario
Xuanhan 朱
Xuanhan 朱 el 3 de Jun. de 2021
Thank you! The answers are verified to be right in my engineering software simulation (LTspice)

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Programming en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by