Can anybody help for solving equation containing complex numbers?

1 visualización (últimos 30 días)
Jaehyoung You
Jaehyoung You el 27 de Dic. de 2016
Respondida: Sudarshan Kolar el 29 de Dic. de 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.

Respuestas (1)

Sudarshan Kolar
Sudarshan Kolar el 29 de Dic. de 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

Categorías

Más información sobre Logical en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by