VirtualMatrix.LUDecomposition(Matrix, Matrix, Matrix) Method

Top 

Description

Decomposes the matrix A such that P*A = L*U.

 

Timing Precision Mode

This page describes functionality in millisecond timing precision mode. Millisecond timing precision mode is deprecated and will be removed in a future release. We recommend that you migrate your Mission Plans to nanosecond timing precision mode.

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

 

Method Signature

VirtualMatrix.LUDecomposition(

Matrix L,


Matrix U,


Matrix P)

 

 

Arguments

L


Description:

The matrix which holds the lower triangular part.

 

 

U


Description:

The matrix which holds the upper triangular part.

 

 

P


Description:

The matrix which holds the permutation matrix P.

 

 

 

Syntax

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

 

 

See also

VirtualMatrix Object

VirtualMatrix.LUDecomposition