how to plot this function
Mostra commenti meno recenti
x=[-1,0.1:1,1];
psi0=(1/pi)^0.25*exp(-x^.2/2.);
plot(x,psi0)
Risposta accettata
Più risposte (1)
Friedel Hartmann
il 15 Mar 2022
0 voti
x=[-1,0.1:1,1];
psi0=(1/pi)^0.25*exp(-x.^2/2.); % <----------------------
plot(x,psi0)
Categorie
Scopri di più su Quaternion Math in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
