Info

この質問は閉じられています。 編集または回答するには再度開いてください。

Problem to extract real and imaginary parts?

1 回表示 (過去 30 日間)
Ivan
Ivan 2019 年 10 月 28 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
syms E0 real positive
syms x real
syms y real
syms z real
syms x0 real
syms y0 real
syms z0 real
syms R real positive
syms e0 real positive
syms ew real positive
syms er real
syms ei real positive
syms kn real positive
rk=[x;y;z]; %vector
r0=[x0;y0;(z0+R)]; %vector
Eplx=0;Eply=0;Eplz=E0;
em=er+ei*1i;
a0=4*pi*R^3*((em-ew)/(em+2*ew));
px=ew*e0*a0*Eplx;
py=ew*e0*a0*Eply;
pz=ew*e0*a0*Eplz;
p=[px;py;pz];
E1=kn^2.*cross((rk-r0),cross(p,(rk-r0))).*exp(1i*kn*norm(rk-r0))./((norm(rk-r0)).^3);
E2=((1-1i*kn*norm(rk-r0))./(norm(rk-r0).^2)).*(3*(rk-r0).*dot((rk-r0),p)-(n.^2.*p)).*exp(1i*kn*norm(rk-r0))./((norm(rk-r0)).^3);
It is not possible to extract real and imag parts from E1 and E2. Where can be the problem? How can it be solved? Is it too complex for Matlab to recognize Re and Im parts in such expression?
Thank you!
  2 件のコメント
Walter Roberson
Walter Roberson 2019 年 10 月 28 日
n is undefined in the final line.
Ivan
Ivan 2019 年 10 月 28 日
the problem remains still.. even if I substitute n=norm(rk-r0)

回答 (1 件)

Walter Roberson
Walter Roberson 2019 年 10 月 28 日
rewrite( expand(E1), 'sincos' )
and you might want to simplify() afterwards.

この質問は閉じられています。

製品


リリース

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by