Matrix.SingularValueDecomposition(Matrix, Matrix, Matrix) Method

Top 

Description

Decomposes any n x m matrix A such that A = U*S*V.Transpose() where U is an n x n unitary matrix, V is an m x m unitary matrix, and S is an n x m matrix with the singular values of A on the main diagonal.

 

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

Matrix.SingularValueDecomposition(

Matrix U,


Matrix S,


Matrix V)

 

 

Arguments

U


Description:

The matrix containing the left singular vectors of matrix A.

 

 

S


Description:

The matrix containing the singular values of matrix A.

 

 

V


Description:

The matrix containing the right singular vectors of matrix A.

 

 

 

Syntax

myMatrix1.SingularValueDecomposition(myMatrix2, myMatrix3, myMatrix4);

 

 

Example 1

 

 

See also

Matrix Object

Matrix, Array, and Variable Math Guide