how to plot this function
Ältere Kommentare anzeigen
x=[-1,0.1:1,1];
psi0=(1/pi)^0.25*exp(-x^.2/2.);
plot(x,psi0)
Akzeptierte Antwort
Weitere Antworten (1)
Friedel Hartmann
am 15 Mär. 2022
0 Stimmen
x=[-1,0.1:1,1];
psi0=(1/pi)^0.25*exp(-x.^2/2.); % <----------------------
plot(x,psi0)
Kategorien
Mehr zu Quaternion Math 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!
