blob: c93ec8aa63ef170bf866d0627866aa6ddc193296 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
# Common values for the sinc interpolation.
pointer sx # Pointer to X array (real)
pointer sy # Pointer to Y array (real)
pointer splx # Pointer to X plot array (real)
pointer sply # Pointer to Y plot array (real)
int snfit # Number of points being fit
common /sinccom/ sx, sy, splx, sply, snfit
|