Rate This Document
Findability
Accuracy
Completeness
Readability

Gamma Distribution Function

Generate a random number vector that conforms to gamma distribution.

Interface Definition

int vsRngGamma (const int method, VSLStreamStatePtr stream, const SizeType n, float *r, const float alpha, const float a, const float beta);

int vdRngGamma (const int method, VSLStreamStatePtr stream, const SizeType n, double *r, const double alpha, const double a, const double beta);

Probability Density Function

Parameters

Parameter

Type

Description

Input/Output

method

int

Random number generation method.

  • VSL_RNG_METHOD_GAMMA_FAST: fast method.

Input

stream

VSLStreamStatePtr type

Random number stream.

Input

n

SizeType

Length of the output vector.

Input

r

  • Single-precision floating-point pointer for vsRngGamma
  • Double-precision floating-point pointer for vdRngGamma

Pointer to the result.

Output

alpha

  • Single-precision floating-point type for vsRngGamma
  • Double-precision floating-point type for vdRngGamma

Alpha parameter. Different values correspond to different algorithms.

Input

a

  • Single-precision floating-point type for vsRngGamma
  • Double-precision floating-point type for vdRngGamma

Addend of the operation result.

Input

beta

  • Single-precision floating-point type for vsRngGamma
  • Double-precision floating-point type for vdRngGamma

Multiplier of the operation result.

Input

Dependencies

#include "krng.h"

Examples

#include <stdio.h>
#include <stdlib.h>
#include "krng.h"
int main()
{
   /* initialize stream with given BRNG type and seed */
    VSLStreamStatePtr stream;
    unsigned seed = 42;
    int errcode = vslNewStream(&stream, VSL_BRNG_MCG59, seed);
    if (errcode != VSL_STATUS_OK) {
        fprintf(stderr, "Failure in newstream\n");
        return 0;
    }

    SizeType n = 10;
    float *r = (float *)malloc(sizeof(float) * n);
    if (r == NULL) {
        fprintf(stderr, "Failure in malloc\n");
        return 0;
    }

    if (vsRngGamma(VSL_RNG_METHOD_GAMMA_FAST, stream, n, r, 0.1, 3.1, 2.3)) {
        fprintf(stderr, "Failure in vsRngGamma\n");
        goto out;
    }

    /* deinitialize the stream */
    errcode = vslDeleteStream(&stream);
    if (errcode != VSL_STATUS_OK) {
        fprintf(stderr, "Failure in deleting stream\n");
        goto out;
    }

out:
    free(r);
    return 0;
}