view nnls.h @ 176:259ef0f4622b

Add a regression test, rejig Makefiles to use a common base
author Chris Cannam
date Mon, 02 Nov 2015 15:18:39 +0000
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