how can i seperate the value exp(1i*2*pi*bbbb);
2 次查看(过去 30 天)
显示 更早的评论
x1=exp(1i*2*pi*bbbb);
d1=bb1.*exp(1i*2*pi*bbbb);
d2=abs(d1);
d3=angle(d1);
d4=exp(1i*d3); %value are not same as x1
%how can i extract the value of x1 from d1
1 个评论
Jan
2018-11-19
Please stop posting questions by attaching them to existing threads in the section for answers. Ask new questions only by opeing new threads. Thanks.
采纳的回答
Adam Danz
2018-11-16
The question is unlcear.
Given d1 from [d1 = bb1 * exp(a)], are you asking how to get exp(a)? If so,
exp(a) = log(d1/bb1);
0 个评论
更多回答(3 个)
Bruno Luong
2018-11-17
编辑:Bruno Luong
2018-11-17
"i want to find the value of x1 from the d1"
x1 = d1/abs(d1)
if bbbb is real.
You need a major update of complex number theory.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!