标签: python numpy vectorization convolution least-squares
我的模型是y = x * h,我想使用最小二乘法来获取h,这意味着:我有以下代码行:
y = np.convolve(x, h, mode='full')
现在我想从y和x中估计出h。