view nnls.h @ 117:5f3d3ea6aab6 monophonicness

rename variables for better readability
author Matthias Mauch <mail@matthiasmauch.net>
date Thu, 31 Mar 2011 14:37:06 +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