Skip to content

Latest commit

 

History

History
99 lines (73 loc) · 6.15 KB

toolkit2016.md

File metadata and controls

99 lines (73 loc) · 6.15 KB
title
Advanced analysis and source modeling of EEG and MEG data

Advanced analysis and source modeling of EEG and MEG data

{% include markup/danger %} The code in line 1604-1606 in ft_volumerealign.m should be commented out to work around the MATLAB 2012b error with the slider.

% set(h1,'sortMethod','childorder')
% set(h2,'sortMethod','childorder')
% set(h3,'sortMethod','childorder')

{% include markup/end %}

On April 18-21, 2016 we will host the "Toolkit of Cognitive Neuroscience: advanced data analysis and source modelling of EEG and MEG data" at the Donders Institute in Nijmegen.

This intense 4-day toolkit course will teach you advanced MEG and EEG data analysis skills. Preprocessing, frequency analysis, source reconstruction, connectivity and various statistical methods will be covered. The toolkit will consist of a number of lectures, followed by hands-on sessions in which you will be tutored through the complete analysis of a MEG data set using the FieldTrip toolbox. The lectures and tutoring will be provided by the core FieldTrip development team, and there will also be plenty of opportunity to interact and ask questions to us about your research and data. On the final day you will have the opportunity to work on your own dataset under supervision of the tutors.

Organizers: Robert Oostenveld and Jan-Mathijs Schoffelen, with the help of many DCCN and DCC colleagues.

Detailed Program

Monday April 18, 2016

| 09:00-09:30 | Registration, handouts and coffee |
| 09.30-09:45 | Welcome |
| 09:45-10:45 | Introduction to EEG/MEG and introduction to the FieldTrip toolbox - lecture | | 10:45-11:00 | Coffee Break |
| 11:00-12:00 | Data acquisition demonstration in the EEG and MEG labs |
| 12:00-13:00 | Lunch |
| 13:00-14:45 | Introduction to Event-Related Fields - hands-on |
| 14:45-15:15 | Tea Break |
| 15:15-16:30 | Fundamentals of neuronal oscillations and synchrony - lecture | | 16:30-17:15 | Wrap-up-the-day: special topics, general questions and answers |

Tuesday April 19, 2016

| 09:00-10:45 | Time-frequency analysis of power - hands-on |
| 10:45-11:00 | Coffee Break |
| 11:00-12:15 | Forward and inverse modeling - lecture | | 12:15-13:00 | Lunch |
| 13:00-14:00 | Source reconstruction using beamformers - lecture | | 14:00-15:00 | Identifying oscillatory sources using beamformers - hands-on |
| 15:00-15:30 | Tea break |
| 15:30-16:30 | Identifying oscillatory sources using beamformers (continued) | | 16:30-17:15 | Wrap-up-the-day: special topics, general questions and answers |
| 19:00-21:30 | Free DINNER - included in registration |

Humphreys Restaurant Vismarkt 7 (Waalkade, i.e. along the river front) 6511 VJ Nijmegen http://www.humphreys.nl/onze-restaurants/humphreys-nijmegen Google maps

Wednesday April 20, 2016

| 09:00-10:00 | Statistics using non-parametric randomization techniques - lecture | | 10:00-10:15 | Coffee Break |
| 10:15-12:15 | Statistics using non-parametric randomization techniques - hands-on |
| 12:15-13:00 | Lunch |
| 13:00-14:00 | Connectivity analysis in MEG and EEG data - lecture | | 14:00-15:00 | Analysis of sensor- and source-level connectivity - hands-on |
| 15:00-15:30 | Tea Break |
| 15:30-16:30 | Analysis of sensor- and source-level connectivity (continued) |
| 16:30-17:15 | Wrap-up-the-day: special topics, general questions and answers |

Thursday April 21, 2016

| 9:00-14:00 | FieldTrip playground, bring your own data! | | 12:30-13:00 | Lunch | | 13:00-14:00 | FieldTrip playground continued | | 14:00-14:15 | Tea break | | 14:15-15.00 | Testimonial & evaluation |

Getting started with the hands-on sessions

For the hands-on sessions we will use MATLAB R2012b, which you can start from the Desktop shortcut. To ensure that everything runs smooth, we will work with a clean and well-tested version of FieldTrip that we have installed on all computers and that we will bring on on a USB stick. Importantly, the tutorial data does not have to be downloaded but will also be distributed on the computers and available on the USB stick.

{% include markup/danger %} Please do not use another MATLAB version than 2012b. It should be available on all hands-on computers. {% include markup/end %}

A recent copy of FieldTrip and the data have been preinstalled on the computer and you do not have to download anything. Also, it should NOT be necessary to execute the following lines of code. These are only needed if you DO NOT start the MATLAB from the Desktop shortcut. In other words, you will probably always want to start MATLAB from the Desktop shortcut.

restoredefaultpath
cd D:\toolkit\fieldtrip
addpath(pwd)
ft_defaults

cd D:\toolkit\data

The restoredefaultpath command clears your path, keeping only the official MATLAB toolboxes. The addpath(pwd) statement adds the present working directory, i.e. the directory containing the FieldTrip main functions. The ft_defaults command ensures that all required subdirectories are added to the path.

{% include markup/danger %} In general, please do NOT use the graphical path management tool from MATLAB. In this hands-on session we'll manage the path from the command line, but in general you are much better off using the startup.m file than the path GUI.

Furthermore, please do NOT add FieldTrip with all subdirectories, subdirectories will be added automatically when needed, and only when needed (see this FAQ). {% include markup/end %}