how can i seperate the value exp(1i*2*pi*bbbb);
Show older comments
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 Comment
Jan
on 19 Nov 2018
Please stop posting questions by attaching them to existing threads in the section for answers. Ask new questions only by opeing new threads. Thanks.
Accepted Answer
More Answers (3)
aaru sri
on 17 Nov 2018
0 votes
1 Comment
John D'Errico
on 17 Nov 2018
Please don't use answers to make a comment.
madhan ravi
on 17 Nov 2018
syms x1 bb1 d1
isolate(d1==bb1.*x1,x1)
Bruno Luong
on 17 Nov 2018
Edited: Bruno Luong
on 17 Nov 2018
"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.
Categories
Find more on Numbers and Precision in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!