annotate maths/pca/pca.h @ 62:b63f1ccbc9b6

* oops... add thread abstraction
author cannam
date Tue, 12 May 2009 17:56:58 +0000
parents 8bdbda7fb893
children 67899fda84f5
rev   line source
cannam@19 1 #ifndef _PCA_H
cannam@19 2 #define _PCA_H
cannam@19 3
cannam@20 4 #ifdef __cplusplus
cannam@20 5 extern "C" {
cannam@20 6 #endif
cannam@20 7
cannam@19 8 /*
cannam@19 9 * pca.h
cannam@19 10 * soundbite
cannam@19 11 *
cannam@19 12 * Created by Mark Levy on 08/02/2006.
cannam@19 13 * Copyright 2006 Centre for Digital Music, Queen Mary, University of London. All rights reserved.
cannam@19 14 *
cannam@19 15 */
cannam@19 16
cannam@19 17 void pca_project(double** data, int n, int m, int ncomponents);
cannam@19 18
cannam@20 19 #ifdef __cplusplus
cannam@20 20 }
cannam@20 21 #endif
cannam@20 22
cannam@19 23
cannam@19 24 #endif
cannam@19 25