Can anybody help for solving equation containing complex numbers?

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

回答(1 个)

Sudarshan Kolar
Sudarshan Kolar 2016-12-29
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

类别

Help CenterFile Exchange 中查找有关 Ordinary Differential Equations 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by