python实现matlab中的filter函数
摘要:
matlab中的filter函数: y = filter(b,a,x) python实现matlab中的filter函数 def filter_matlab(b,a,x): y = [] y.append(b[0] * x[0]) for i in range(1,len(x)): y.append 阅读全文
posted @ 2020-06-04 15:13 chila 阅读(1480) 评论(0) 推荐(0) 编辑