Mercurial > hg > nnls-chroma
view nnls.h @ 184:82d5d11b68d7 tip
Update library URI so it's not document-local
author | Chris Cannam |
---|---|
date | Wed, 22 Apr 2020 14:21:25 +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