Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jw3126/cumulantgeneratingfunctions.jl
Provide cgf support for Distributions.jl
https://github.com/jw3126/cumulantgeneratingfunctions.jl
julia probability-distributions
Last synced: 16 days ago
JSON representation
Provide cgf support for Distributions.jl
- Host: GitHub
- URL: https://github.com/jw3126/cumulantgeneratingfunctions.jl
- Owner: jw3126
- License: mit
- Created: 2022-08-13T21:48:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-08-15T18:57:40.000Z (over 2 years ago)
- Last Synced: 2024-10-30T19:12:04.791Z (2 months ago)
- Topics: julia, probability-distributions
- Language: Julia
- Homepage:
- Size: 99.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CumulantGeneratingFunctions
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://jw3126.github.io/CumulantGeneratingFunctions.jl/stable/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://jw3126.github.io/CumulantGeneratingFunctions.jl/dev/)
[![Build Status](https://github.com/jw3126/CumulantGeneratingFunctions.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/jw3126/CumulantGeneratingFunctions.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Coverage](https://codecov.io/gh/jw3126/CumulantGeneratingFunctions.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/jw3126/CumulantGeneratingFunctions.jl)This package exports one function `cgf` that calculates the [cumulant-generating-function](https://en.wikipedia.org/wiki/Cumulant) of a distribution:
```julia
julia> using Distributions, CumulantGeneratingFunctionsjulia> cgf(Normal(0,1), 100)
5000.0
```