Mercurial > hg > nnls-chroma
view nnls.h @ 23:93c836cfb8c5 matthiasm-plugin
* Consistent indentation (spaces only)
author | Chris Cannam |
---|---|
date | Thu, 21 Oct 2010 12:12:23 +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