scipy 1.8.0 Pypi GitHub Homepage
Other Docs
NotesParametersReturns

Notes

For example, the 5x5 toeplitz matrix below should be represented as the linear array a on the right :

[ a0    a1   a2  a3  a4 ]
[ a-1   a0   a1  a2  a3 ]
[ a-2  a-1   a0  a1  a2 ] -> [a-4  a-3  a-2  a-1  a0  a1  a2  a3  a4]
[ a-3  a-2  a-1  a0  a1 ]
[ a-4  a-3  a-2  a-1 a0 ]

Parameters

a : array, dtype=double or complex128, shape=(2n-1,)

The first column of the matrix in reverse order (without the diagonal) followed by the first (see below)

b : array, dtype=double or complex128, shape=(n,)

The right hand side vector. Both a and b must have the same type (double or complex128).

Returns

x : arrray, shape=(n,)

The solution vector

reflection_coeff : array, shape=(n+1,)

Toeplitz reflection coefficients. When a is symmetric Toeplitz and b is a[n:] , as in the solution of autoregressive systems, then reflection_coeff also correspond to the partial autocorrelation function.

Solve a linear Toeplitz system using Levinson recursion.

Examples

See :

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 : None#None
type: <class 'fused_cython_function'>
Commit: