c@244: #ifndef _PCA_H c@244: #define _PCA_H c@244: c@245: #ifdef __cplusplus c@245: extern "C" { c@245: #endif c@245: c@244: /* c@244: * pca.h c@244: * c@244: * Created by Mark Levy on 08/02/2006. c@309: * Copyright 2006 Centre for Digital Music, Queen Mary, University of London. c@309: c@309: This program is free software; you can redistribute it and/or c@309: modify it under the terms of the GNU General Public License as c@309: published by the Free Software Foundation; either version 2 of the c@309: License, or (at your option) any later version. See the file c@309: COPYING included with this distribution for more information. c@244: * c@244: */ c@244: c@244: void pca_project(double** data, int n, int m, int ncomponents); c@244: c@245: #ifdef __cplusplus c@245: } c@245: #endif c@245: c@244: c@244: #endif c@244: