Construct a circulant matrix.
c : (N,) array_like
1-D array, the first column of the matrix.
A : (N, N) ndarray
A circulant matrix whose first column is c.
See also
Notes
New in version 0.8.0.
Examples
>>> from scipy.linalg import circulant >>> circulant([1, 2, 3]) array([[1, 3, 2], [2, 1, 3], [3, 2, 1]])
scipy.linalg.block_diag
scipy.linalg.companion
Enter search terms or a module, class or function name.