svd
in package
SVD Compute the singular value decomposition of a matrix and return an object of the singular values and unitary matrices
Tags
Table of Contents
- factory() : self
- s() : vector
- Return the singular values of matrix.
- u() : matrix
- Return the U matrix.
- v() : matrix
- Return the V matrix.
- vt() : matrix
- Return the V transposed matrix.
- __construct() : mixed
Methods
factory()
public
static factory(matrix $m) : self
Parameters
- $m : matrix
Return values
self —s()
Return the singular values of matrix.
public
s() : vector
Return values
vector —u()
Return the U matrix.
public
u() : matrix
Return values
matrix —v()
Return the V matrix.
public
v() : matrix
Return values
matrix —vt()
Return the V transposed matrix.
public
vt() : matrix
Return values
matrix —__construct()
protected
__construct(matrix $u, matrix $v, vector $s) : mixed