How to solve an inequality

2 次查看(过去 30 天)
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.

采纳的回答

David Hill
David Hill 2021-6-3
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 个评论
Xuanhan 朱
Xuanhan 朱 2021-6-3
Thank you! The answers are verified to be right in my engineering software simulation (LTspice)

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Programming 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by