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