https://github.com/limix/hgauss
Functions for Gaussian distribution.
https://github.com/limix/hgauss
Last synced: 2 months ago
JSON representation
Functions for Gaussian distribution.
- Host: GitHub
- URL: https://github.com/limix/hgauss
- Owner: limix
- License: mit
- Created: 2017-09-24T17:35:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-01-06T10:59:08.000Z (over 5 years ago)
- Last Synced: 2025-01-23T08:45:24.368Z (4 months ago)
- Language: C
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# hgauss
[](https://travis-ci.com/limix/hgauss)
Auxiliary functions for Normal distribution.
## Install
You can install it via [conda](https://conda.io)
```bash
conda install -c conda-forge hgauss
```Alternatively, one can compile and install it.
From Linux, MacOS, or Windows (bash terminal) systems, enter```bash
# DO_CMD=sudo
curl -fsSL https://git.io/JerYI | GITHUB_USER=limix GITHUB_PROJECT=hgauss bash
```## Documentation
```c
double hgauss_logcdf(double x);
double hgauss_pdf(double x);
double hgauss_cdf(double x);
double hgauss_icdf(double x);
double hgauss_logsf(double x);
double hgauss_sf(double x);
double hgauss_isf(double x);
double hgauss_logpdf(double x);
```## Authors
- [Danilo Horta](https://github.com/horta)
## License
This project is licensed under the MIT License - see the [license file](https://raw.githubusercontent.com/limix/hgauss/master/LICENSE.md) for details.