Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed compile issue in r2c fft doc #286

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion inc/NE10_dsp.h
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ extern "C" {
*
* {
* ne10_int32_t fftSize = 1024;
* ne10_fft_r2c_cfg_float32_t cfg = ne10_fft_alloc_r2c_float32_neon(fftSize); // Allocate a configuration structure for R2C/C2R FP32 NEON FFTs of size fftSize
* ne10_fft_r2c_cfg_float32_t cfg = ne10_fft_alloc_r2c_float32(fftSize); // Allocate a configuration structure for R2C/C2R FP32 FFTs of size fftSize
* ne10_float32_t *in = malloc(fftSize * sizeof(ne10_float32_t)); // Allocate an input array of samples
* ne10_fft_cpx_float32_t *out = malloc(fftSize * sizeof(ne10_fft_cpx_float32_t)); // Allocate an (oversized) output array of samples
*
Expand Down