How can I make this plot smooth?
Show older comments

a=5.51*(10^-10);
h=6.62*(10^-34)
E=linspace(100,1.6e-16,200)
m=9.11e-31
h=6.62*(10^-34);
A=sqrt(2*m*E)/h;
f=(16*(sin(A*a)./(A*a)))+cos(A*a);
plot(A,f)
Answers (1)
Walter Roberson
on 4 Dec 2017
You have
E=linspace(100,1.6e-16,200)
which is 200 values linearly decreasing from 100 to 1.6E-16. You calculate A proportional to sqrt(E) so A will be proportional to 10 to about 1.26E-8 in sqrt-linear steps. You then divide by A. But dividing by sqrt-linear does not give linear or sqrt-linear: the distance between adjacent 1/A for small A near 1E-8 is going to be much much greater than the distance between adjacent 1/A for large A near 10.
The only way to make the resulting plot smooth is to use E values such that after transformation are linear. For example,
maxE = 100;
minE = 1E-16;
Ar_maxE = 1 ./ (sqrt(2*m*maxE) ./ h);
Ar_minE = 1 ./ (sqrt(2*m*minE) ./ h);
Ar = linspace(Ar_maxE, Ar_minE, 200);
A = 1 ./ Ar;
f = 16 * sin(A .* a) ./ a .* Ar + cos(A .* a);
2 Comments
Walter Roberson
on 4 Dec 2017
I did not divide by Ar, I multiplied by Ar, which is constructed to be a linearly smooth version between the extremes of 1/A.
SHEREEN AHMED
on 5 Dec 2017
Edited: SHEREEN AHMED
on 5 Dec 2017
Categories
Find more on Interpolation in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!