FIR Filtering beignings

This commit is contained in:
2025-09-27 15:44:52 +02:00
parent fab0e5cc62
commit 4a6d79c0b4
11 changed files with 161 additions and 105 deletions

View File

@ -1,7 +0,0 @@
pub fn rectangular(t: f32) -> f32 {
1.
}
pub fn bartlett(t: f32) -> f32 {
if t < 0.5 { 2. * t } else { 2. - 2. * t }
}