view nnls.h @ 157:16b2eb26f8ca

Don't rely on having Vamp SDK in a particular location
author Chris Cannam
date Thu, 04 Dec 2014 11:35:40 +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