view nnls.h @ 28:52b6dbd61553 matthiasm-plugin

* minor tidy
author Chris Cannam
date Thu, 21 Oct 2010 20:19:29 +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