chebyshev.py 文件源码

python
阅读 23 收藏 0 点赞 0 评论 0

项目:deliver 作者: orchestor 项目源码 文件源码
def _zseries_mul(z1, z2):
    """Multiply two z-series.

    Multiply two z-series to produce a z-series.

    Parameters
    ----------
    z1, z2 : 1-D ndarray
        The arrays must be 1-D but this is not checked.

    Returns
    -------
    product : 1-D ndarray
        The product z-series.

    Notes
    -----
    This is simply convolution. If symmetric/anti-symmetric z-series are
    denoted by S/A then the following rules apply:

    S*S, A*A -> S
    S*A, A*S -> A

    """
    return np.convolve(z1, z2)
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号