Process the data with PROC G3GRID.The SMOOTH=.05 option specifies the smoothing parameter to use during spline interpolation.
proc g3grid data=nums out=smoothed; grid y*x=z / spline smooth=.05 axis1=-5 to 5 by .5 axis2=-5 to 5 by .5; run; quit;