Numworks Epsilon  1.4.1
Graphing Calculator Operating System
math.c File Reference
#include <math.h>

Go to the source code of this file.

Functions

int test_fpclassifyf (float x)
 
int test_isfinitef (float x)
 
int test_isnormalf (float x)
 
int test_isnanf (float x)
 
int test_isinff (float x)
 
float test_acosf (float x)
 
float test_acoshf (float x)
 
float test_asinf (float x)
 
float test_asinhf (float x)
 
float test_atanf (float x)
 
float test_atan2f (float y, float x)
 
float test_atanhf (float x)
 
float test_ceilf (float x)
 
float test_copysignf (float x, float y)
 
float test_cosf (float x)
 
float test_coshf (float x)
 
float test_expf (float x)
 
float test_expm1f (float x)
 
float test_fabsf (float x)
 
float test_floorf (float x)
 
float test_fmodf (float x, float y)
 
float test_lgammaf (float x)
 
float test_lgammaf_r (float x, int *signgamp)
 
float test_log1pf (float x)
 
float test_log10f (float x)
 
float test_logf (float x)
 
float test_nanf (const char *s)
 
float test_nearbyintf (float x)
 
float test_powf (float x, float y)
 
float test_roundf (float x)
 
float test_scalbnf (float x, int n)
 
float test_sinf (float x)
 
float test_sinhf (float x)
 
float test_sqrtf (float x)
 
float test_tanf (float x)
 
float test_tanhf (float x)
 
int test_fpclassify (double x)
 
int test_isfinite (double x)
 
int test_isnormal (double x)
 
int test_isnan (double x)
 
int test_isinf (double x)
 
double test_acos (double x)
 
double test_acosh (double x)
 
double test_asin (double x)
 
double test_asinh (double x)
 
double test_atan (double x)
 
double test_atanh (double x)
 
double test_ceil (double x)
 
double test_copysign (double x, double y)
 
double test_cos (double x)
 
double test_cosh (double x)
 
double test_exp (double x)
 
double test_expm1 (double x)
 
double test_fabs (double x)
 
double test_floor (double x)
 
double test_lgamma (double x)
 
double test_lgamma_r (double x, int *signgamp)
 
double test_log1p (double x)
 
double test_log10 (double x)
 
double test_log (double x)
 
double test_pow (double x, double y)
 
double test_round (double x)
 
double test_scalbn (double x, int n)
 
double test_sin (double x)
 
double test_sinh (double x)
 
double test_sqrt (double x)
 
double test_tan (double x)
 
double test_tanh (double x)
 

Function Documentation

◆ test_acos()

double test_acos ( double  x)

Definition at line 130 of file math.c.

◆ test_acosf()

float test_acosf ( float  x)

Definition at line 20 of file math.c.

◆ test_acosh()

double test_acosh ( double  x)

Definition at line 133 of file math.c.

◆ test_acoshf()

float test_acoshf ( float  x)

Definition at line 23 of file math.c.

◆ test_asin()

double test_asin ( double  x)

Definition at line 136 of file math.c.

◆ test_asinf()

float test_asinf ( float  x)

Definition at line 26 of file math.c.

◆ test_asinh()

double test_asinh ( double  x)

Definition at line 139 of file math.c.

◆ test_asinhf()

float test_asinhf ( float  x)

Definition at line 29 of file math.c.

◆ test_atan()

double test_atan ( double  x)

Definition at line 142 of file math.c.

◆ test_atan2f()

float test_atan2f ( float  y,
float  x 
)

Definition at line 35 of file math.c.

◆ test_atanf()

float test_atanf ( float  x)

Definition at line 32 of file math.c.

◆ test_atanh()

double test_atanh ( double  x)

Definition at line 145 of file math.c.

◆ test_atanhf()

float test_atanhf ( float  x)

Definition at line 38 of file math.c.

◆ test_ceil()

double test_ceil ( double  x)

Definition at line 148 of file math.c.

◆ test_ceilf()

float test_ceilf ( float  x)

Definition at line 41 of file math.c.

◆ test_copysign()

double test_copysign ( double  x,
double  y 
)

Definition at line 151 of file math.c.

◆ test_copysignf()

float test_copysignf ( float  x,
float  y 
)

Definition at line 44 of file math.c.

◆ test_cos()

double test_cos ( double  x)

Definition at line 154 of file math.c.

◆ test_cosf()

float test_cosf ( float  x)

Definition at line 47 of file math.c.

◆ test_cosh()

double test_cosh ( double  x)

Definition at line 157 of file math.c.

◆ test_coshf()

float test_coshf ( float  x)

Definition at line 50 of file math.c.

◆ test_exp()

double test_exp ( double  x)

Definition at line 160 of file math.c.

◆ test_expf()

float test_expf ( float  x)

Definition at line 53 of file math.c.

◆ test_expm1()

double test_expm1 ( double  x)

Definition at line 163 of file math.c.

◆ test_expm1f()

float test_expm1f ( float  x)

Definition at line 56 of file math.c.

◆ test_fabs()

double test_fabs ( double  x)

Definition at line 166 of file math.c.

◆ test_fabsf()

float test_fabsf ( float  x)

Definition at line 59 of file math.c.

◆ test_floor()

double test_floor ( double  x)

Definition at line 169 of file math.c.

◆ test_floorf()

float test_floorf ( float  x)

Definition at line 62 of file math.c.

◆ test_fmodf()

float test_fmodf ( float  x,
float  y 
)

Definition at line 65 of file math.c.

◆ test_fpclassify()

int test_fpclassify ( double  x)

Definition at line 114 of file math.c.

◆ test_fpclassifyf()

int test_fpclassifyf ( float  x)

Definition at line 4 of file math.c.

◆ test_isfinite()

int test_isfinite ( double  x)

Definition at line 117 of file math.c.

◆ test_isfinitef()

int test_isfinitef ( float  x)

Definition at line 7 of file math.c.

◆ test_isinf()

int test_isinf ( double  x)

Definition at line 126 of file math.c.

◆ test_isinff()

int test_isinff ( float  x)

Definition at line 16 of file math.c.

◆ test_isnan()

int test_isnan ( double  x)

Definition at line 123 of file math.c.

◆ test_isnanf()

int test_isnanf ( float  x)

Definition at line 13 of file math.c.

◆ test_isnormal()

int test_isnormal ( double  x)

Definition at line 120 of file math.c.

◆ test_isnormalf()

int test_isnormalf ( float  x)

Definition at line 10 of file math.c.

◆ test_lgamma()

double test_lgamma ( double  x)

Definition at line 172 of file math.c.

◆ test_lgamma_r()

double test_lgamma_r ( double  x,
int *  signgamp 
)

Definition at line 175 of file math.c.

◆ test_lgammaf()

float test_lgammaf ( float  x)

Definition at line 68 of file math.c.

◆ test_lgammaf_r()

float test_lgammaf_r ( float  x,
int *  signgamp 
)

Definition at line 71 of file math.c.

◆ test_log()

double test_log ( double  x)

Definition at line 184 of file math.c.

◆ test_log10()

double test_log10 ( double  x)

Definition at line 181 of file math.c.

◆ test_log10f()

float test_log10f ( float  x)

Definition at line 77 of file math.c.

◆ test_log1p()

double test_log1p ( double  x)

Definition at line 178 of file math.c.

◆ test_log1pf()

float test_log1pf ( float  x)

Definition at line 74 of file math.c.

◆ test_logf()

float test_logf ( float  x)

Definition at line 80 of file math.c.

◆ test_nanf()

float test_nanf ( const char *  s)

Definition at line 83 of file math.c.

◆ test_nearbyintf()

float test_nearbyintf ( float  x)

Definition at line 86 of file math.c.

◆ test_pow()

double test_pow ( double  x,
double  y 
)

Definition at line 187 of file math.c.

◆ test_powf()

float test_powf ( float  x,
float  y 
)

Definition at line 89 of file math.c.

◆ test_round()

double test_round ( double  x)

Definition at line 190 of file math.c.

◆ test_roundf()

float test_roundf ( float  x)

Definition at line 92 of file math.c.

◆ test_scalbn()

double test_scalbn ( double  x,
int  n 
)

Definition at line 193 of file math.c.

◆ test_scalbnf()

float test_scalbnf ( float  x,
int  n 
)

Definition at line 95 of file math.c.

◆ test_sin()

double test_sin ( double  x)

Definition at line 196 of file math.c.

◆ test_sinf()

float test_sinf ( float  x)

Definition at line 98 of file math.c.

◆ test_sinh()

double test_sinh ( double  x)

Definition at line 199 of file math.c.

◆ test_sinhf()

float test_sinhf ( float  x)

Definition at line 101 of file math.c.

◆ test_sqrt()

double test_sqrt ( double  x)

Definition at line 202 of file math.c.

◆ test_sqrtf()

float test_sqrtf ( float  x)

Definition at line 104 of file math.c.

◆ test_tan()

double test_tan ( double  x)

Definition at line 205 of file math.c.

◆ test_tanf()

float test_tanf ( float  x)

Definition at line 107 of file math.c.

◆ test_tanh()

double test_tanh ( double  x)

Definition at line 208 of file math.c.

◆ test_tanhf()

float test_tanhf ( float  x)

Definition at line 110 of file math.c.