2016-09-15 53 views
1

要創建一個可以使用的數字系統,例如在波特或頻譜的matlab或八度我可以使用:scipy中MatLab/Octave filt/bode的等價物是什麼?

b = [1,0.1,0.2,0.3] 
a = [1,-1] 
sys = filt(b,a) 
bode(sys) 
spectrum(sys) 

這個命令的scipy等效物是什麼?

+2

僅供參考:指向['filt'](http://mathworks.com/help/control/ref/filt.html)和['bode']的鏈接(http://mathworks.com/help/control /ref/bode.html)MATLAB文檔。順便說一下,['scipy.signal.bode'](http://docs.scipy.org/doc/scipy-0.14.0/reference/generated/scipy.signal.bode.html)的例子可能是相關的到你的情況。 – 2016-09-15 10:30:18

回答

相關問題