Click or drag to resize
XDL

XfnSVD Method

Singular Value Decomposition

Namespace:  Pixoneer.NXDL
Assembly:  NXDL (in NXDL.dll) Version: 1.2.817.72
Syntax
C#
public static bool SVD(
	XMatREAL64 A,
	ref XMatREAL64 U,
	ref XMatREAL64 VT,
	ref XMatREAL64 W
)

Parameters

A
Type: Pixoneer.NXDLXMatREAL64
[In] Input matrix (M x N)
U
Type: Pixoneer.NXDLXMatREAL64
[Out] Output left singular vectors (M x M)
VT
Type: Pixoneer.NXDLXMatREAL64
[Out] Output right singular vectors (N x N)
W
Type: Pixoneer.NXDLXMatREAL64
[Out] Output singular values in descending order

Return Value

Type: Boolean
Singular Value Decomposition 성공여부.
See Also