blob: 50d08d7b909dda4633d47a1cb2b3c1daed2e40b0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* magstep.h 2.9.0 92/07/06
* Magstep calculation type function things
*
* magstep(i) is magstep i
* MAGSTEPHALF is magstep 1/2
* stepmag(f) is nearest magstep(n) to f
*/
#define MAGSTEPONE 1.2
#define MAGSTEPHALF 1.09544511501033222690
double magstep ARGS((int i));
double stepmag ARGS((double f));
|