Source code for deltasigma._mod2
# -*- coding: utf-8 -*-
# _mod2.py
# Module providing the mod2 function
# Copyright 2013 Giuseppe Venturini
# This file is part of python-deltasigma.
#
# python-deltasigma is a 1:1 Python replacement of Richard Schreier's
# MATLAB delta sigma toolbox (aka "delsigma"), upon which it is heavily based.
# The delta sigma toolbox is (c) 2009, Richard Schreier.
#
# python-deltasigma is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# LICENSE file for the licensing terms.
"""Module providing the mod2() utility function
"""
import numpy as np
from ._calculateTF import calculateTF
[docs]def mod2():
"""A description of the second-order modulator.
**Returns:**
ABCD, NTF, STF : a tuple of (ndarray, lti, lti)
The elements are the ABCD matrix (ndarray),
the NTF (LTI object), the STF (LTI object).
.. note::
If a version of the ``scipy`` library equal to 0.16.x or greater is in
use, the NTF and STF objects will be ``ZeroPolesGain`` objects, a
subclass of the scipy LTI object (``scipy.signal.lti``).
"""
A = np.array([[1., 0.], [1., 1.]])
B = np.array([[1., -1.], [1., -2.]])
C = np.array([[0., 1.]])
D = np.array([[0., 0.]])
ABCD = np.vstack((np.hstack((A, B)), np.hstack((C, D))))
H, G = calculateTF(ABCD)
return ABCD, H, G