How to get a 2D data array of complex a+bi number from phase only 2D array.
이전 댓글 표시
I have a 2D array of phase values extracted from interferometric measurement. Now I need to get the same array but in complex a+bi form. I assume amplitude = 1. How to create little code for this purpose? Cheers!
답변 (1개)
Andrei Bobrov
2015년 12월 6일
편집: Andrei Bobrov
2015년 12월 6일
phase1 = 2*(rand(10)-.5)*pi; % your 2D array of phase values.
out = exp(1i*phase1);
카테고리
도움말 센터 및 File Exchange에서 Dates and Time에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!