poissonCDF - 2023.2 English

Vitis Libraries

Release Date
2023-12-20
Version
2023.2 English
#include "xf_fintech/poisson_distribution.hpp"
template <typename DT>
DT poissonCDF (
    unsigned int k,
    DT m
    )

poissonCDF it implement a cumulative distribution function for poisson distribution

Parameters:

DT data type supported include float and double
k the number of occurrences
m is a positive real number, it is equal to the expected value of a discrete random variable and also to its variance.

Returns:

it belong to [0, 1] and also is a cumulative probability value.