Mercurial > hg > nnls-chroma
view nnls.h @ 166:eb959aae96cf
Added tag v1.0 for changeset 9e9267d6d78a
author | Chris Cannam |
---|---|
date | Tue, 08 Sep 2015 13:13:34 +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