Metadata-Version: 1.1
Name: fieldtrip2mne
Version: 0.0.2
Summary: Convert MEG and EEG brain scan data from FieldTrip toolbox in Matlab to MNE toolbox in python.
Home-page: https://gitlab.com/obob/fieldtrip2mne
Author: Thomas Hartmann & Dirk Gütlin
Author-email: thomas.hartmann@th-ht.de
License: GPL3
Description: # fieldtrip2mne
        
        A Python module facilitating data conversion between MEG/EEG analysis toolboxes FieldTrip in MATLAB and MNE in Python. It works by reading FieldTrip data structures stored in .mat files and reassinging them to equivalent MNE structures. Several functions are provided to convert from different data types.
        
        ## How to use
        ```python
        from fieldtrip2mne import read_raw
        
        data = read_raw(filename)
        ```
        ```python
        from fieldtrip2mne import read_epoched
        
        data = read_epoched(filename)
        ```
        ```python
        from fieldtrip2mne import read_avg
        
        data = read_avg(filename)
        ```
        ## License
        This module is developed by Thomas Hartmann & Dirk Gütlin at the Universität Salzburg. You are free to use, copy, modify, distribute it under the terms of the GPL3.
Keywords: MNE FieldTrip converter MATLAB to Python
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 2.7
