view nnls.h @ 140:8ff2aa01df4d darwintunes

Johan's changes: * removing slash notation substitution in the case of Harte's syntax * remove obsolete chorddict.cpp
author Matthias Mauch <matthias.mauch@eecs.qmul.ac.uk>
date Tue, 19 Jun 2012 15:40:09 +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