comparison src/fftw-3.3.3/libbench2/aset.c @ 10:37bf6b4a2645

Add FFTW3
author Chris Cannam
date Wed, 20 Mar 2013 15:35:50 +0000
parents
children
comparison
equal deleted inserted replaced
9:c0fb53affa76 10:37bf6b4a2645
1 /* not worth copyrighting */
2
3 #include "bench.h"
4
5 void aset(bench_real *A, int n, bench_real x)
6 {
7 int i;
8 for (i = 0; i < n; ++i)
9 A[i] = x;
10 }