add numerical recipes library
This commit is contained in:
14
lib/nr/ansi/recipes/pythag.c
Normal file
14
lib/nr/ansi/recipes/pythag.c
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
#include <math.h>
|
||||
#define NRANSI
|
||||
#include "nrutil.h"
|
||||
|
||||
float pythag(float a, float b)
|
||||
{
|
||||
float absa,absb;
|
||||
absa=fabs(a);
|
||||
absb=fabs(b);
|
||||
if (absa > absb) return absa*sqrt(1.0+SQR(absb/absa));
|
||||
else return (absb == 0.0 ? 0.0 : absb*sqrt(1.0+SQR(absa/absb)));
|
||||
}
|
||||
#undef NRANSI
|
||||
Reference in New Issue
Block a user