annotate nnls.h @ 23:93c836cfb8c5
matthiasm-plugin
* Consistent indentation (spaces only)
author |
Chris Cannam |
date |
Thu, 21 Oct 2010 12:12:23 +0100 |
parents |
444c344681f3 |
children |
6d9e1ee7b35a |
rev |
line source |
matthiasm@6
|
1 #ifndef NNLS_H
|
matthiasm@6
|
2 #define NNLS_H
|
matthiasm@6
|
3
|
Chris@22
|
4 extern "C" {
|
matthiasm@6
|
5
|
Chris@22
|
6 int nnls_(double *a, int *mda, int *m, int *n,
|
Chris@22
|
7 double *b, double *x, double *rnorm,
|
Chris@22
|
8 double *w, double *zz, int *index, int *mode);
|
matthiasm@6
|
9
|
Chris@22
|
10 #define NNLS nnls_
|
matthiasm@6
|
11
|
Chris@22
|
12 }
|
matthiasm@6
|
13
|
matthiasm@6
|
14 #endif
|
matthiasm@6
|
15
|