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