├── 0_introduction ├── 1_matlabIntro_plotting.m ├── 1_matlabIntro_variables.m ├── 2_indexing.m ├── 3_timedomain.m ├── 4_topomaps.m ├── amsterdam.bmp └── sampleEEGdata.mat ├── 1_discrete-time_Fourier_transform ├── 1_sinewave.m ├── 2_fourier.m ├── 3_complexfourier.m ├── 4_frequencies.m └── 5_fftstationarity.m ├── 2_Morlet_wavelet_convolution ├── 1_convolutionTime.m ├── 2_morletWavelet.m ├── 3_convolutionAsFreqMult.m ├── 4_eulers_and_convolution.m ├── 5_convolution_with_many_trials.m ├── 6_waveletparams.m ├── 7_inter_trial_phase_clustering.m ├── 8_nonphaselocked.m └── my_script_check_reversed_signal.m ├── 3_TF_analysis_other_methods ├── 1_hilbertX.m ├── 2_firfilter.m ├── 3_stfft.m ├── 4_multitaper.m └── 5_freqslide.m ├── 4_Normalization_and_TF_postprocessing ├── 1_powerLawTF.m ├── 2_dbpct.m ├── 3_whichbaseline.m ├── 4_postanalysis_ds.m ├── 5_loglinTF.m └── 6_units.m ├── 5_Data_preprocessing_and_cleaning ├── 1_laplacian.m └── laplacian_perrinX.m ├── 6_Connectivity ├── 1_phase_connectivity.m └── 2_powerconn.m ├── 7_Basic_statistics ├── 1_permutationTesting.m ├── 2_groupFX.m ├── s_tf │ ├── s1_tf.mat │ ├── s2_tf.mat │ ├── s3_tf.mat │ ├── s4_tf.mat │ ├── s5_tf.mat │ └── s6_tf.mat ├── statistics_file.txt ├── statistics_file_subjectSpecific.txt └── v1_laminar.mat └── README.md /0_introduction/1_matlabIntro_plotting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/0_introduction/1_matlabIntro_plotting.m -------------------------------------------------------------------------------- /0_introduction/1_matlabIntro_variables.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/0_introduction/1_matlabIntro_variables.m -------------------------------------------------------------------------------- /0_introduction/2_indexing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/0_introduction/2_indexing.m -------------------------------------------------------------------------------- /0_introduction/3_timedomain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/0_introduction/3_timedomain.m -------------------------------------------------------------------------------- /0_introduction/4_topomaps.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/0_introduction/4_topomaps.m -------------------------------------------------------------------------------- /0_introduction/amsterdam.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/0_introduction/amsterdam.bmp -------------------------------------------------------------------------------- /0_introduction/sampleEEGdata.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/0_introduction/sampleEEGdata.mat -------------------------------------------------------------------------------- /1_discrete-time_Fourier_transform/1_sinewave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/1_discrete-time_Fourier_transform/1_sinewave.m -------------------------------------------------------------------------------- /1_discrete-time_Fourier_transform/2_fourier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/1_discrete-time_Fourier_transform/2_fourier.m -------------------------------------------------------------------------------- /1_discrete-time_Fourier_transform/3_complexfourier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/1_discrete-time_Fourier_transform/3_complexfourier.m -------------------------------------------------------------------------------- /1_discrete-time_Fourier_transform/4_frequencies.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/1_discrete-time_Fourier_transform/4_frequencies.m -------------------------------------------------------------------------------- /1_discrete-time_Fourier_transform/5_fftstationarity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/1_discrete-time_Fourier_transform/5_fftstationarity.m -------------------------------------------------------------------------------- /2_Morlet_wavelet_convolution/1_convolutionTime.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/2_Morlet_wavelet_convolution/1_convolutionTime.m -------------------------------------------------------------------------------- /2_Morlet_wavelet_convolution/2_morletWavelet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/2_Morlet_wavelet_convolution/2_morletWavelet.m -------------------------------------------------------------------------------- /2_Morlet_wavelet_convolution/3_convolutionAsFreqMult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/2_Morlet_wavelet_convolution/3_convolutionAsFreqMult.m -------------------------------------------------------------------------------- /2_Morlet_wavelet_convolution/4_eulers_and_convolution.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/2_Morlet_wavelet_convolution/4_eulers_and_convolution.m -------------------------------------------------------------------------------- /2_Morlet_wavelet_convolution/5_convolution_with_many_trials.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/2_Morlet_wavelet_convolution/5_convolution_with_many_trials.m -------------------------------------------------------------------------------- /2_Morlet_wavelet_convolution/6_waveletparams.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/2_Morlet_wavelet_convolution/6_waveletparams.m -------------------------------------------------------------------------------- /2_Morlet_wavelet_convolution/7_inter_trial_phase_clustering.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/2_Morlet_wavelet_convolution/7_inter_trial_phase_clustering.m -------------------------------------------------------------------------------- /2_Morlet_wavelet_convolution/8_nonphaselocked.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/2_Morlet_wavelet_convolution/8_nonphaselocked.m -------------------------------------------------------------------------------- /2_Morlet_wavelet_convolution/my_script_check_reversed_signal.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/2_Morlet_wavelet_convolution/my_script_check_reversed_signal.m -------------------------------------------------------------------------------- /3_TF_analysis_other_methods/1_hilbertX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/3_TF_analysis_other_methods/1_hilbertX.m -------------------------------------------------------------------------------- /3_TF_analysis_other_methods/2_firfilter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/3_TF_analysis_other_methods/2_firfilter.m -------------------------------------------------------------------------------- /3_TF_analysis_other_methods/3_stfft.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/3_TF_analysis_other_methods/3_stfft.m -------------------------------------------------------------------------------- /3_TF_analysis_other_methods/4_multitaper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/3_TF_analysis_other_methods/4_multitaper.m -------------------------------------------------------------------------------- /3_TF_analysis_other_methods/5_freqslide.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/3_TF_analysis_other_methods/5_freqslide.m -------------------------------------------------------------------------------- /4_Normalization_and_TF_postprocessing/1_powerLawTF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/4_Normalization_and_TF_postprocessing/1_powerLawTF.m -------------------------------------------------------------------------------- /4_Normalization_and_TF_postprocessing/2_dbpct.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/4_Normalization_and_TF_postprocessing/2_dbpct.m -------------------------------------------------------------------------------- /4_Normalization_and_TF_postprocessing/3_whichbaseline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/4_Normalization_and_TF_postprocessing/3_whichbaseline.m -------------------------------------------------------------------------------- /4_Normalization_and_TF_postprocessing/4_postanalysis_ds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/4_Normalization_and_TF_postprocessing/4_postanalysis_ds.m -------------------------------------------------------------------------------- /4_Normalization_and_TF_postprocessing/5_loglinTF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/4_Normalization_and_TF_postprocessing/5_loglinTF.m -------------------------------------------------------------------------------- /4_Normalization_and_TF_postprocessing/6_units.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/4_Normalization_and_TF_postprocessing/6_units.m -------------------------------------------------------------------------------- /5_Data_preprocessing_and_cleaning/1_laplacian.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/5_Data_preprocessing_and_cleaning/1_laplacian.m -------------------------------------------------------------------------------- /5_Data_preprocessing_and_cleaning/laplacian_perrinX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/5_Data_preprocessing_and_cleaning/laplacian_perrinX.m -------------------------------------------------------------------------------- /6_Connectivity/1_phase_connectivity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/6_Connectivity/1_phase_connectivity.m -------------------------------------------------------------------------------- /6_Connectivity/2_powerconn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/6_Connectivity/2_powerconn.m -------------------------------------------------------------------------------- /7_Basic_statistics/1_permutationTesting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/7_Basic_statistics/1_permutationTesting.m -------------------------------------------------------------------------------- /7_Basic_statistics/2_groupFX.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/7_Basic_statistics/2_groupFX.m -------------------------------------------------------------------------------- /7_Basic_statistics/s_tf/s1_tf.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/7_Basic_statistics/s_tf/s1_tf.mat -------------------------------------------------------------------------------- /7_Basic_statistics/s_tf/s2_tf.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/7_Basic_statistics/s_tf/s2_tf.mat -------------------------------------------------------------------------------- /7_Basic_statistics/s_tf/s3_tf.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/7_Basic_statistics/s_tf/s3_tf.mat -------------------------------------------------------------------------------- /7_Basic_statistics/s_tf/s4_tf.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/7_Basic_statistics/s_tf/s4_tf.mat -------------------------------------------------------------------------------- /7_Basic_statistics/s_tf/s5_tf.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/7_Basic_statistics/s_tf/s5_tf.mat -------------------------------------------------------------------------------- /7_Basic_statistics/s_tf/s6_tf.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/7_Basic_statistics/s_tf/s6_tf.mat -------------------------------------------------------------------------------- /7_Basic_statistics/statistics_file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/7_Basic_statistics/statistics_file.txt -------------------------------------------------------------------------------- /7_Basic_statistics/statistics_file_subjectSpecific.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/7_Basic_statistics/statistics_file_subjectSpecific.txt -------------------------------------------------------------------------------- /7_Basic_statistics/v1_laminar.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/7_Basic_statistics/v1_laminar.mat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreiZn/Tutorial_neural_time_series_analysis/HEAD/README.md --------------------------------------------------------------------------------