Mercurial > hg > nnls-chroma
view nnls.h @ 24:568ff0daa659 matthiasm-plugin
* Remove some obsolete files
author | Chris Cannam |
---|---|
date | Thu, 21 Oct 2010 12:21:41 +0100 |
parents | 444c344681f3 |
children | 6d9e1ee7b35a |
line wrap: on
line source
#ifndef NNLS_H #define NNLS_H extern "C" { int nnls_(double *a, int *mda, int *m, int *n, double *b, double *x, double *rnorm, double *w, double *zz, int *index, int *mode); #define NNLS nnls_ } #endif