view nnls.h @ 77:ba930176df5b matthiasm-plugin

fixed. warning: I added some arrays with variable length (though not at runtime).
author Matthias Mauch <mail@matthiasmauch.net>
date Thu, 11 Nov 2010 10:27:58 +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