gammaii¶
Purpose¶
Computes the inverse incomplete gamma function.
Format¶
-
g_ii =
gammaii
(a, p)¶ - Parameters
a (MxN matrix) – exponents.
p (KxL matrix or ExE conformable with a) – incomplete gamma values.
- Returns
g_ii (max(M,K) by max(N,L) matrix) – the inverse incomplete gamma function evaluate at p.
Examples¶
/*
** Create sequence from 0
** to 0.9 with a 0.001
** increment
*/
p = seqa(0, 0.001, 0.9/0.001);
// Find inverse incomplete gamma
g_ii = gammaii(3, p);
// Plot results
plotXY(p, g_ii);