aboutsummaryrefslogtreecommitdiff
path: root/math/deboor/round.f
blob: df02c939970772a5b57abf3a7e60a2778fd043fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
real function round ( x )
c  from  * a practical guide to splines *  by c. de boor
called in example 1  of chapter xiii
      real x,	flip,size
      common /rount/ size
      data flip /-1./
      flip = -flip
      round = x + flip*size
					return
      end