plotting complex exponential function
조회 수: 84 (최근 30일)
이전 댓글 표시
채택된 답변
추가 답변 (1개)
James Tursa
2020년 11월 29일
편집: James Tursa
2020년 11월 29일
E.g., maybe this is what you need
y = 1*exp( -i20 *pi * t ) + 4*exp( i20 * pi * t );
plot(t,y);
Although it is not clear what i20 is. A variable name? Or is this supposed to be i*20? In which case you might want to plot real(y) instead of y.
참고 항목
카테고리
Help Center 및 File Exchange에서 Creating and Concatenating Matrices에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!