import numpy as np def conv1d(x,h): """对位相乘相加法计算卷积和""" N1=len(x) N2=len(h) x=np.array(x) h=np.array(h) ...
確定! 回上一頁