Note: This API is now obsolete.
Multiplies a vector in place by the orthogonal factor
Q of this
QRDecompositionT.
Namespace:
Extreme.Mathematics.LinearAlgebra
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
[ObsoleteAttribute("Use the Multiply method of the OrthogonalFactor property instead.")]
public DenseVector<T> ApplyQ(
DenseVector<T> vector
)
<ObsoleteAttribute("Use the Multiply method of the OrthogonalFactor property instead.")>
Public Function ApplyQ (
vector As DenseVector(Of T)
) As DenseVector(Of T)
public:
[ObsoleteAttribute(L"Use the Multiply method of the OrthogonalFactor property instead.")]
DenseVector<T>^ ApplyQ(
DenseVector<T>^ vector
)
[<ObsoleteAttribute("Use the Multiply method of the OrthogonalFactor property instead.")>]
member ApplyQ :
vector : DenseVector<'T> -> DenseVector<'T>
Parameters
- vector
- Type: Extreme.Mathematics.LinearAlgebraDenseVectorT
A DenseVectorT with
the same number of rows as Q.
Return Value
Type:
DenseVectorTA reference to the transformed vector.
The multiplication is performed implicitly.
Reference