Back to Numerical Arrays (NumPy)
np.svd
Singular Value Decomposition.
Syntax
np.svd(a, fullMatrices?)
Description
Singular Value Decomposition.
Parameters
| Name | Description |
|---|---|
| a | - Matrix to decompose (M x N) |
| fullMatrices(optional) | - If true, U and Vh have full shapes (M x M) and (N x N) If false, shapes are reduced (M x K) and (K x N) |
Returns
Promise<SVDResult>