1function f = moment_joint_factorial_from_upfactorial(fp)
2% f = moment_joint_factorial_from_upfactorial(fp)
4% Converts joint upward-factorial moments into joint factorial moments, by
5% the
signed Lah numbers along every dimension.
8% fp: array of size (n_1+1)x...x(n_d+1) holding the joint upward-factorial
9% moments, element (i_1+1,...,i_d+1) being the moment of
10% multi-order (i_1,...,i_d) and element 1 being 1
13% f: array of the same size holding the joint factorial moments
16% A. Heindl and A. van de Liefvoort. Moment conversions for discrete
17% distributions. PMCCS, 2003.
19f = moment_jointtrans(fp, 'factorial_from_upfactorial');