Pfa235FFTFactorize Method |
Factorize the number into powers of 2, 3, and 5
Namespace: Altaxo.Calc.FourierAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public static bool Factorize(
int n,
int[] pqr
)
Parameters
- n Int32
- The dimension n to be factorized into the valid factors n = (2**p) * (3**q) * (5**r)
- pqr Int32
- Return the powers of the basic prime factors 2, 3 and 5 for the given argument n. Must be at least int[3].
Return Value
BooleanTrue if factorization is successful, False if n can not be factorized into powers of 2, 3, and 5.
See Also