view nnls.h @ 130:014e62613e75 darwintunes

updated n3 file to reflect removed monophonicness and consonance estimatros from nnls-chroma
author matthiasm
date Thu, 16 Jun 2011 17:09:38 +0100
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