Applies the permutation P of the decomposition PA= LU to a Vector.

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Function ApplyP ( _
	vector As Vector _
) As Vector
C#
public Vector ApplyP (
	Vector vector
)
C++
public:
Vector^ ApplyP (
	Vector^ vector
)

Parameters

vector (Extreme.Mathematics.LinearAlgebra.Vector)
A Vector with length equal to the number of rows in the underlying GeneralMatrix.

Return Value

The Vectorvector with its elements permuted.

Exceptions

ExceptionCondition
ArgumentNullExceptionvector is nullNothingnullptr.
DimensionMismatchExceptionThe length of vector does not equal the number of rows in the permutation matrix.