comparison src/fftw-3.3.5/libbench2/aset.c @ 42:2cd0e3b3e1fd

Current fftw source
author Chris Cannam
date Tue, 18 Oct 2016 13:40:26 +0100
parents
children
comparison
equal deleted inserted replaced
41:481f5f8c5634 42:2cd0e3b3e1fd
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 }