标签: python python-2.7 python-3.x
如何在Python中使函数对称?
我有一个过滤器,我需要对其进行对称。
在MATLAB中,命令是
filt = [filt , filt(end-1:-1:2)];
另外我需要知道如何在python中使用repmat。 这是我想要转换为Python的MATLAB的一步。
filt = repmat(filt',[1 1024]);