Note: This API is now obsolete.
Applies the permutation
P of the decomposition
PA=
LU to a
ComplexVector.
Namespace: Extreme.Mathematics.LinearAlgebra.ComplexAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.17114.0)
[ObsoleteAttribute("Use RowPermutation.Apply instead.")]
public ComplexVector ApplyP(
ComplexVector vector,
bool overwrite
)
<ObsoleteAttribute("Use RowPermutation.Apply instead.")>
Public Function ApplyP (
vector As ComplexVector,
overwrite As Boolean
) As ComplexVector
public:
[ObsoleteAttribute(L"Use RowPermutation.Apply instead.")]
ComplexVector^ ApplyP(
ComplexVector^ vector,
bool overwrite
)
[<ObsoleteAttribute("Use RowPermutation.Apply instead.")>]
member ApplyP :
vector : ComplexVector *
overwrite : bool -> ComplexVector
Parameters
- vector
- Type: Extreme.MathematicsComplexVector
A ComplexVector with length
equal to the number of rows in the underlying
ComplexDenseMatrix. - overwrite
- Type: SystemBoolean
If , the vector
vector is overwritten by the result.
If , a new ComplexVector is returned.
Return Value
Type:
ComplexVectorA
ComplexVector with the elements of
vector permuted.
Numerical Libraries
Obsolete (compiler warning) in 5.x
Obsolete (compiler warning) in 4.x
Reference