comparison examples/basic_FFT_phase_vocoder/render.cpp @ 372:db2fe4e1b88e prerelease

Doxygen content added to each example render.cpp. References to AnalogReadFrame etc. removed from doxygen content.
author Robert Jack <robert.h.jack@gmail.com>
date Thu, 09 Jun 2016 18:16:05 +0100
parents 1feb9c23ac57
children 3bed6b09223c
comparison
equal deleted inserted replaced
371:361d0c2335cf 372:db2fe4e1b88e
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: parallels 14 * Author: parallels
6 */ 15 */
7 16
17 /**
18 \example 4_audio_FFT_phase_vocoder
19
20 Phase Vocoder
21 ----------------------
22
23 This sketch shows an implementation of a phase vocoder and builds on the previous FFT example.
24 Again it uses the NE10 library, included at the top of the file (line 11).
25
26 Read the documentation on the NE10 library [here](http://projectne10.github.io/Ne10/doc/annotated.html).
27 */
8 28
9 #include <Bela.h> 29 #include <Bela.h>
10 #include <rtdk.h> 30 #include <rtdk.h>
11 #include <NE10.h> // NEON FFT library 31 #include <NE10.h> // NEON FFT library
12 #include <cmath> 32 #include <cmath>