pydsm.NTFdesign.weighting.ntf_fir_from_q0¶
-
pydsm.NTFdesign.weighting.
ntf_fir_from_q0
(q0, H_inf=1.5, normalize='auto', **options)¶ Synthesize FIR NTF from quadratic form expressing noise weighting.
- Parameters
- q0ndarray
first row of the Toeplitz symmetric matrix defining the quadratic form
- H_infreal, optional
Max peak NTF gain, defaults to 1.5, used to enforce the Lee criterion
- normalizestring or real, optional
Normalization to apply to the quadratic form used in the NTF selection. Defaults to ‘auto’ which means setting the top left entry in the matrix Q defining the quadratic form to 1.
- Returns
- ntfndarray
FIR NTF in zpk form
- Other Parameters
- show_progressbool, optional
provide extended output.
- fix_posbool, optional
fix quadratic form for positive definiteness. Numerical noise may make it not positive definite leading to errors.
- modelerstring, optional
modeling backend for the optimization problem. Currently, the
cvxpy_old
,cvxpy
andpicos
backends are supported. Default iscvxpy_old
.- cvxpy_optsdictionary, optional
A dictionary of options to use with the
cvxpy
modeling library. Allowed options include:override_kktsolver
(bool)Whether to override the default
cvxopt
kkt solver using thechol
kkt solver. Leave this at the default True setting, to avoid paying a performance price.solver
(string)The solver backend to use. Either cvxopt or scs
- cvxopt_optsdict, optional
A dictionary of options for the
cvxopt
optimizer. Allowed options include:maxiters
(int)Maximum number of iterations
abstol
(real)Absolute accuracy
reltol
(real)Relative accuracy
feastol
(real)Tolerance for feasibility conditions (defaults to 1e-6)
Do not use other options since they could break
cvxopt
in unexpected ways. These options can be passed when using thecvxpy_old
modeler, thepicos
modeler or thecvxpy
modeler with thecvxopt
backend.- scs_optsdict, optional
A dictionary of options for the
scs
optimizer. Allowed options include:max_iters
(int)Maximum number of iterations
eps
(real)Convergence tolerance
alpha
(real)Relaxation parameter
normalize
(bool)Whether to precondition data matrices
use_indirect
(bool)Whether to use indirect solver for KKT sytem (instead of direct)
Do not use other options since they could break
scs
in unexpected ways. These options can be passed when using thecvxpy
modeler with thescs
backend.
See also
cvxopt
for the optimizer parameters
scs
for the optimizer parameters
cvxpy
for the modeler parameters
Notes
Default values for the options not directly documented in the function call signature can be checked and updated by changing the function
default_options
attribute.