Mercurial > hg > nnls-chroma
view nnls.h @ 151:40f8cfed5b5a
Added tag mirex2013 for changeset 2cd99c0810f2
author | Chris Cannam |
---|---|
date | Fri, 06 Sep 2013 16:59:44 +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