comparison examples/filter_IIR/render.cpp @ 375:768acdeea362 prerelease

Merge
author Giulio Moro <giuliomoro@yahoo.it>
date Fri, 10 Jun 2016 00:35:18 +0100
parents db2fe4e1b88e
children
comparison
equal deleted inserted replaced
374:ecad1ea0382a 375:768acdeea362
1 /*
2 ____ _____ _ _
3 | __ )| ____| | / \
4 | _ \| _| | | / _ \
5 | |_) | |___| |___ / ___ \
6 |____/|_____|_____/_/ \_\.io
7
8 */
9
1 /* 10 /*
2 * render.cpp 11 * render.cpp
3 * 12 *
4 * Created on: Oct 24, 2014 13 * Created on: Oct 24, 2014
5 * Author: Andrew McPherson and Victor Zappi 14 * Author: Andrew McPherson and Victor Zappi
6 */ 15 */
7 16
17 /**
18 \example 4_filter_IIR
19
20 Infinite Impulse Response Filter
21 ------------------------------
22
23 This is an example of a infinite impulse response filter implementation.
24 */
8 25
9 #include <Bela.h> // to schedule lower prio parallel process 26 #include <Bela.h> // to schedule lower prio parallel process
10 #include <rtdk.h> 27 #include <rtdk.h>
11 #include <cmath> 28 #include <cmath>
12 #include <stdio.h> 29 #include <stdio.h>