view nnls.h @ 27:690bd9148467 matthiasm-plugin

* Split out some common code into chromamethods.cpp from NNLSChroma.cpp (the latter is destined to become the chroma plugin only, eventually)
author Chris Cannam
date Thu, 21 Oct 2010 16:34:58 +0100
parents 6d9e1ee7b35a
children da3195577172
line wrap: on
line source
#ifndef NNLS_H
#define NNLS_H

#ifdef __cplusplus
extern "C" {
#endif

int nnls_(double *a, int *mda, int *m, int *n, 
	  double *b, double *x, double *rnorm, 
	  double *w, double *zz, int *index, int *mode);

#define NNLS nnls_

#ifdef __cplusplus
}
#endif

#endif