view nnls.h @ 48:6e76c7710fa1 matthiasm-plugin

removed subtraction in chroma dictionary, added to-the-power-of-1.5 in chordino
author matthiasm
date Mon, 25 Oct 2010 16:58:32 +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