1function m = moment_joint_raw_from_upfactorial(fp)
2% m = moment_joint_raw_from_upfactorial(fp)
4% Converts joint upward-factorial moments into joint power (raw) moments, by
5% the
signed Stirling numbers of the second kind along every dimension.
6% Inverse of moment_joint_upfactorial_from_raw.
9% fp: array of size (n_1+1)x...x(n_d+1) holding the joint upward-factorial
10% moments, element (i_1+1,...,i_d+1) being the moment of
11% multi-order (i_1,...,i_d) and element 1 being 1
14% m: array of the same size holding the joint raw moments
17% A. Heindl and A. van de Liefvoort. Moment conversions for discrete
18% distributions. PMCCS, 2003.
20m = moment_jointtrans(fp, 'raw_from_upfactorial');