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.

 Accepted Answer

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 Comment

Thank you! The answers are verified to be right in my engineering software simulation (LTspice)

Sign in to comment.

More Answers (0)

Categories

Find more on MATLAB in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!