Matlab到Python转换的对称性和repmat

时间:2016-02-27 16:42:36

标签: 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]);

0 个答案:

没有答案