File tree Expand file tree Collapse file tree 2 files changed +4
-11
lines changed
Expand file tree Collapse file tree 2 files changed +4
-11
lines changed Original file line number Diff line number Diff line change 44
55Provides functions for working with and visualizing scalar ARMA processes.
66
7+ TODO: 1. Fix warnings concerning casting complex variables back to floats
8+
79"""
810import numpy as np
911from numpy import conj , pi
1012import matplotlib .pyplot as plt
1113from scipy .signal import dimpulse , freqz , dlsim
1214
13- # == Ignore unnecessary warnings concerning casting complex variables back to
14- # floats == #
15- import warnings
16- warnings .filterwarnings ('ignore' )
17-
1815
1916class ARMA (object ):
2017 r"""
Original file line number Diff line number Diff line change 77* Lyapunov Equations
88* Ricatti Equations
99
10- TODO: See issue 47 on github repository, should add support for
10+ TODO: 1. See issue 47 on github repository, should add support for
1111 Sylvester equations
12-
12+ 2. Fix warnings from checking conditioning of matrices
1313"""
1414from __future__ import division
1515import numpy as np
16- import warnings
1716from numpy import dot
1817from numpy .linalg import solve
1918from scipy .linalg import solve_discrete_lyapunov as sp_solve_discrete_lyapunov
2019
21- # == Suppress warnings from checking conditioning of matrices == #
22- warnings .simplefilter ("ignore" , RuntimeWarning )
23-
2420
2521def solve_discrete_lyapunov (A , B , max_it = 50 , method = "doubling" ):
2622 r"""
You can’t perform that action at this time.
0 commit comments