scipy 1.8.0 Pypi GitHub Homepage
Other Docs
NotesParametersRaisesReturnsBackRef
companion(a)

Create the companion matrix associated with the polynomial whose coefficients are given in a.

Notes

versionadded

Parameters

a : (N,) array_like

1-D array of polynomial coefficients. The length of a must be at least two, and a[0] must not be zero.

Raises

ValueError

If any of the following are true: a) a.ndim != 1 ; b) a.size < 2 ; c) a[0] == 0 .

Returns

c : (N-1, N-1) ndarray

The first row of c is -a[1:]/a[0] , and the first sub-diagonal is all ones. The data-type of the array is the same as the data-type of 1.0*a[0] .

Create a companion matrix.

Examples

>>> from scipy.linalg import companion
... companion([1, -10, 31, -30]) array([[ 10., -31., 30.], [ 1., 0., 0.], [ 0., 1., 0.]])
See :

Back References

The following pages refer to to this document either explicitly or contain code examples using this.

scipy.linalg._special_matrices.companion scipy.linalg._special_matrices.fiedler_companion

Local connectivity graph

Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.

Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)

SVG is more flexible but power hungry; and does not scale well to 50 + nodes.

All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them


GitHub : /scipy/linalg/_special_matrices.py#552
type: <class 'function'>
Commit: