Mercurial > hg > batch-feature-extraction-tool
view Lib/fftw-3.2.1/libbench2/.svn/text-base/caset.c.svn-base @ 5:a6bfbc7cb449
Remove crap
author | Geogaddi\David <d.m.ronan@qmul.ac.uk> |
---|---|
date | Wed, 22 Jul 2015 14:58:31 +0100 |
parents | 25bf17994ef1 |
children |
line wrap: on
line source
/* not worth copyrighting */ #include "bench.h" void caset(bench_complex *A, int n, bench_complex x) { int i; for (i = 0; i < n; ++i) { c_re(A[i]) = c_re(x); c_im(A[i]) = c_im(x); } }