SciPy

This is documentation for an old release of SciPy (version 0.15.1). Read this page in the documentation of the latest stable release (version 1.14.1).

scipy.linalg.diagsvd

scipy.linalg.diagsvd(s, M, N)[source]

Construct the sigma matrix in SVD from singular values and size M, N.

Parameters:

s : (M,) or (N,) array_like

Singular values

M : int

Size of the matrix whose singular values are s.

N : int

Size of the matrix whose singular values are s.

Returns:

S : (M, N) ndarray

The S-matrix in the singular value decomposition

Previous topic

scipy.linalg.svdvals

Next topic

scipy.linalg.orth