mrs_lib
Various reusable classes, functions and utilities for use in MRS projects
Loading...
Searching...
No Matches
math.h
Go to the documentation of this file.
1// clang: MatousFormat
7#ifndef MATH_H
8#define MATH_H
9
10#include <cmath>
11
12namespace mrs_lib
13{
14 /* probit() function //{ */
15 //
16 //
17
30 double probit(const double quantile);
31
32 //}
33}
34
35#endif
All mrs_lib functions, classes, variables and definitions are contained in this namespace.
Definition attitude_converter.h:24
double probit(const double quantile)
Inverse cumulative distribution function of the standard normal probability distribution.
Definition math.cpp:6