Mercurial > hg > nnls-chroma
view nnls.h @ 95:dab7e7bfeba1 matthiasm-plugin 0.2
added release notes, updated README
author | matthiasm |
---|---|
date | Fri, 03 Dec 2010 00:46:12 +0900 |
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