why do I need to add eps ?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
hello I want to ask why do I need to add the value eps to this code ?
x=-8:0.5:8;
y=x';
[xi,yi]=meshgrid(x,y);
r=sqrt(xi.^2+yi.^2)+eps;
z=sin(r)./r;
mesh(x,y,z,r)
becouse for some reason if I do not add eps i get a hole in the top, why is that ?
0 Kommentare
Antworten (1)
Andrei Bobrov
am 2 Sep. 2018
Bearbeitet: Andrei Bobrov
am 2 Sep. 2018
To avoid the uncertainty of "0/0" situation when calculating z.
When x = 0 and y = 0.
Siehe auch
Kategorien
Mehr zu Printing and Saving finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!