Mercurial > hg > nnls-chroma
view nnls.h @ 163:59b26f52550d
Make some more debug output dependent on debug_on
author | Chris Cannam |
---|---|
date | Fri, 04 Sep 2015 12:22:09 +0100 |
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