VirtualMatrix.QRDecomposition(Matrix, Matrix) Method

Top 

Description

Decomposes matrix A into matrices Q and R such that A = QR by using Householder transformations. Here, Q is a unitary matrix and R is an upper triangular matrix.

 

Timing Precision Mode

This page describes functionality in nanosecond timing precision mode.

Click here to see the documentation for this object in millisecond timing precision mode.

 

Method Signature

VirtualMatrix.QRDecomposition(

Matrix Q,


Matrix R)

 

 

Arguments

Q


Description:

The Q orthogonal matrix.

 

 

R


Description:

The R upper triangle matrix.

 

 

 

Syntax

[1,2; 3,4].QRDecomposition(myMatrix1, myMatrix2);

 

 

See also

VirtualMatrix Object