EEG_extensions.h 2.1 KB

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