Clear Filters
Clear Filters

How to find the root value of h in a differential equation?

2 views (last 30 days)
How can I find the value h(real form and imagnery form) in this differential equation? My coding started with this.
syms E(h)
E(h)=((8*10e-6)*h)/((pi)*(8.854e-12)*(16+h^2)*(32+h^2)^1/2)
Df=diff(E,h)

Answers (1)

Alan Stevens
Alan Stevens on 10 Dec 2020
Try adding the line
h = vpasolve(Df(h)==0,h)

Community Treasure Hunt

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

Start Hunting!