Oakfield API Documentation 1.0.0
Numerical core APIs
Loading...
Searching...
No Matches
bessel.h
Go to the documentation of this file.
1
13#ifndef OAKFIELD_MATH_BESSEL_H
14#define OAKFIELD_MATH_BESSEL_H
15
16#ifdef __cplusplus
17extern "C" {
18#endif
19
26double sim_bessel_j0_f64(double x);
27
34double sim_bessel_j1_f64(double x);
35
43double sim_bessel_jn_f64(int order, double x);
44
52float sim_bessel_jn_f32(int order, float x);
53
54#ifdef __cplusplus
55}
56#endif
57
58#endif /* OAKFIELD_MATH_BESSEL_H */
double sim_bessel_j0_f64(double x)
Cylindrical Bessel J_0(x) for double-precision real x.
float sim_bessel_jn_f32(int order, float x)
Cylindrical Bessel J_n(x) for integer order n and single-precision real x.
double sim_bessel_jn_f64(int order, double x)
Cylindrical Bessel J_n(x) for integer order n and double-precision real x.
double sim_bessel_j1_f64(double x)
Cylindrical Bessel J_1(x) for double-precision real x.