how to plot this function
4 views (last 30 days)
Show older comments
khaled Abdelghafar
on 15 Mar 2022
Answered: Davide Masiello
on 15 Mar 2022
x=[-1,0.1:1,1];
psi0=(1/pi)^0.25*exp(-x^.2/2.);
plot(x,psi0)
0 Comments
Accepted Answer
Davide Masiello
on 15 Mar 2022
clear,clc
x = -1:0.1:1;
psi0 = (pi^-0.25)*exp(-x.^2/2);
plot(x,psi0)
0 Comments
More Answers (1)
Friedel Hartmann
on 15 Mar 2022
x=[-1,0.1:1,1];
psi0=(1/pi)^0.25*exp(-x.^2/2.); % <----------------------
plot(x,psi0)
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!