how to plot euler formula in matlab?
Ältere Kommentare anzeigen
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 Kommentar
Turlough Hughes
am 18 Feb. 2020
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')
Akzeptierte Antwort
Weitere Antworten (1)
i = linspace(0,1,100) ;
y = exp(100*i*pi) ;
plot(i,y)
Kategorien
Mehr zu Mathematics finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
