Mercurial > hg > nnls-chroma
annotate nnls.h @ 103:9d81703dcf6e matthiasm-plugin v0.2.1
set internal version number to 3
author | Matthias Mauch <mail@matthiasmauch.net> |
---|---|
date | Tue, 07 Dec 2010 21:27:36 +0900 |
parents | da3195577172 |
children |
rev | line source |
---|---|
matthiasm@6 | 1 #ifndef NNLS_H |
matthiasm@6 | 2 #define NNLS_H |
matthiasm@6 | 3 |
Chris@25 | 4 #ifdef __cplusplus |
Chris@22 | 5 extern "C" { |
Chris@25 | 6 #endif |
matthiasm@6 | 7 |
Chris@29 | 8 int nnls(float *a, int mda, int m, int n, |
Chris@29 | 9 float *b, float *x, float *rnorm, |
Chris@29 | 10 float *w, float *zz, int *index, int *mode); |
matthiasm@6 | 11 |
Chris@25 | 12 #ifdef __cplusplus |
Chris@22 | 13 } |
Chris@25 | 14 #endif |
matthiasm@6 | 15 |
matthiasm@6 | 16 #endif |
matthiasm@6 | 17 |