svd_dgesvd¶isComplexType(t) |
|
svd_dgesvd(a[, full_matrices, compute_uv]) |
Singular Value Decomposition. |
tikreg.svd_dgesvd.svd_dgesvd(a, full_matrices=0, compute_uv=1)¶Singular Value Decomposition.
Factorizes the matrix a into two unitary matrices, U and Vh,
and a 1-dimensional array of singular values, s (real, non-negative),
such that a == U S Vh, where S is the diagonal
matrix np.diag(s).
| Parameters: |
|
|---|---|
| Returns: |
|
| Raises: |
|