VirtualMatrix.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.

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

 

Method Signature

VirtualMatrix.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

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

 

 

See also

VirtualMatrix Object