git-svn-id: http://moon:8086/svn/matlab/trunk@157 801c6759-fa7c-4059-a304-17956f83a07c
This commit is contained in:
2022-06-16 06:16:47 +00:00
parent 9c60c50492
commit 579c1544b1
29 changed files with 1210 additions and 0 deletions
+4
View File
@@ -0,0 +1,4 @@
function y = CalcSincFilter(scale, freq, N)
t = linspace(-(N-1)/2, (N-1)/2, N);
y = scale*sinc(freq*t);