Can anybody help for solving equation containing complex numbers?

1 vue (au cours des 30 derniers jours)
Jaehyoung You
Jaehyoung You le 27 Déc 2016
Hello everyone!
I want to solve the equation below,
where u is complex permeability; u=u'-ju''. e is complex permittiity; e=e'-je'', and ft/c is constant.
Here I want to find the value of u=u'-ju'' satisfying the above equation when the e=e'-je'' value is given.
As a novice I tried with code below, but it didn't work.
if true
% code
endsyms e u;
e=10-4.6*1i;
ft=24;
c=299792458000;
F = sqrt((u)/e)*tanh((1i*2*pi*ft/c)*sqrt((u)*e))-1;
Can anyone help please?
Thank you for your reply in advance.

Réponses (1)

Sudarshan Kolar
Sudarshan Kolar le 29 Déc 2016
if true
% code
end
>> syms u
>> e=10-4.6i;
>> ft=24;
>> c=299792458000;
>> F = sqrt((u)/e)*tanh((i*2*pi*ft/c)*sqrt(u*e)) == 1;
>> solve(F,u)
Hope this helps.
Documentation of solve(): https://www.mathworks.com/help/symbolic/solve.html

Catégories

En savoir plus sur Mathematics dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by