Note: This API is now obsolete.
Multiplies a vector in place by the orthogonal factor
Q of this
QRDecomposition.
Namespace: Extreme.Mathematics.LinearAlgebraAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
[ObsoleteAttribute("Use the Multiply method of the OrthogonalFactor property instead.")]
public DenseVector ApplyQ(
DenseVector vector
)
<ObsoleteAttribute("Use the Multiply method of the OrthogonalFactor property instead.")>
Public Function ApplyQ (
vector As DenseVector
) As DenseVector
public:
[ObsoleteAttribute(L"Use the Multiply method of the OrthogonalFactor property instead.")]
DenseVector^ ApplyQ(
DenseVector^ vector
)
[<ObsoleteAttribute("Use the Multiply method of the OrthogonalFactor property instead.")>]
member ApplyQ :
vector : DenseVector -> DenseVector
Parameters
- vector
- Type: Extreme.Mathematics.LinearAlgebraDenseVector
A DenseVector with
the same number of rows as Q.
Return Value
Type:
DenseVectorA reference to the transformed vector.
The multiplication is performed implicitly.
Numerical Libraries
Obsolete (compiler warning) in 5.x
Obsolete (compiler warning) in 4.x
Reference