1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
#ifndef _EEG_extensions_h_
#define _EEG_extensions_h_
/* EEG_extensions.h
*
* Copyright (C) 2012-2017 David Weenink, 2018,2021 Paul Boersma
*
* This code is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This code is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this work. If not, see <http://www.gnu.org/licenses/>.
*/
#include "Covariance.h"
#include "ICA.h"
#include "EEG.h"
autoCrossCorrelationTable EEG_to_CrossCorrelationTable (EEG me,
double startTime, double endTime, double lagTime, constINTVECVU const& channels);
autoCovariance EEG_to_Covariance (EEG me, double startTime, double endTime, constINTVECVU const& channels);
autoCrossCorrelationTableList EEG_to_CrossCorrelationTableList (EEG me,
double startTime, double endTime, integer numberOfCrossCorrelations, double lagStep,
constINTVECVU const& channels
);
autoPCA EEG_to_PCA (EEG me, double startTime, double endTime, constINTVECVU const& channels, int fromCorrelation);
autoEEG EEG_PCA_to_EEG_whiten (EEG me, PCA thee, integer numberOfComponents);
autoEEG EEG_PCA_to_EEG_principalComponents (EEG me, PCA thee, integer numberOfComponents);
autoEEG EEG_to_EEG_bss (EEG me, double startTime, double endTime, integer numberOfCrossCorrelations, double lagStep,
constINTVECVU const& channels, int whiteningMethod, int diagonalizerMethod, integer maxNumberOfIterations, double tol,
autoMixingMatrix *p_resultingMixingMatrix
);
autoSound EEG_to_Sound_frequencyShifted (EEG me, integer channel, double frequencyShift, double samplingFrequency, double maxAmp);
autoSound EEG_to_Sound_modulated (EEG me, double baseFrequency, double channelBandWidth, constINTVEC const& channelNumbers);
/* End of file EEG_extensions.h */
#endif
|