how to plot euler formula in matlab?
이전 댓글 표시
I want to plot exponential signal that is euler formula exp(i*pi) in MATLAB but output figure is empty and does not shows graph as shown in attached, even i tried plotting simpler version, i mean
exp(i*pi),but still figure was empty

댓글 수: 1
Turlough Hughes
2020년 2월 18일
There is an example of plotting exponentials in the documentation here, see the sub heading Plot Exponential Function. If you're trying to observe a single point on the plot you could also write
plot(y,'or')
채택된 답변
추가 답변 (1개)
i = linspace(0,1,100) ;
y = exp(100*i*pi) ;
plot(i,y)
카테고리
도움말 센터 및 File Exchange에서 Mathematics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
