Home
last modified time | relevance | path

Searched refs:sos (Results 1 – 2 of 2) sorted by relevance

/cmsis-dsp-3.7.0-3.6.0/Testing/PatternGeneration/
DBIQUAD.py33 def getCoefs(n,sos,format): argument
35 coefs=np.reshape(np.hstack((np.insert(sos[:,:3],1,0.0,axis=1),-sos[:,4:])),n*6)
37 coefs=np.reshape(np.hstack((sos[:,:3],-sos[:,4:])),n*5)
65 sos = signal.zpk2sos(zeros,poles,g)
67 return(sos)
93 sos = signal.zpk2sos(
98 coefs=getCoefs(3,sos,format)
100 res=signal.sosfilt(sos,sig)
146 sos = genSos(n)
147 coefs=getCoefs(n,sos,format)
[all …]
/cmsis-dsp-3.7.0-3.6.0/PythonWrapper/examples/
Dexample.py44 sos = signal.zpk2sos( variable
49 res=signal.sosfilt(sos,sig)
64 coefs=np.reshape(np.hstack((sos[:,:3],-sos[:,4:])),15)