Mercurial > hg > nnls-chroma
view nnls.h @ 72:45fc8c48af3b matthiasm-plugin
* Add -fno-exceptions and -static-libgcc to avoid library dependencies
author | Chris Cannam |
---|---|
date | Thu, 28 Oct 2010 09:15:35 +0200 |
parents | da3195577172 |
children |
line wrap: on
line source
#ifndef NNLS_H #define NNLS_H #ifdef __cplusplus extern "C" { #endif int nnls(float *a, int mda, int m, int n, float *b, float *x, float *rnorm, float *w, float *zz, int *index, int *mode); #ifdef __cplusplus } #endif #endif