コード例 #1
0
ファイル: test_raw.py プロジェクト: rkmaddox/mne-python
def test_concat():
    """Test RawFIF concatenation"""
    # we trim the file to save lots of memory and some time
    tempdir = _TempDir()
    raw = read_raw_fif(test_fif_fname)
    raw.crop(0, 2., copy=False)
    test_name = op.join(tempdir, 'test_raw.fif')
    raw.save(test_name)
    # now run the standard test
    _test_concat(read_raw_fif, test_name)
コード例 #2
0
def test_concat():
    """Test RawFIF concatenation"""
    # we trim the file to save lots of memory and some time
    tempdir = _TempDir()
    raw = read_raw_fif(test_fif_fname)
    raw.crop(0, 2., copy=False)
    test_name = op.join(tempdir, 'test_raw.fif')
    raw.save(test_name)
    # now run the standard test
    _test_concat(read_raw_fif, test_name)
コード例 #3
0
def test_concat():
    """Test EDF concatenation
    """
    _test_concat(read_raw_kit, sqd_path)
コード例 #4
0
ファイル: test_edf.py プロジェクト: leggitta/mne-python
def test_concat():
    """Test EDF concatenation"""
    _test_concat(read_raw_edf, bdf_path)
コード例 #5
0
ファイル: test_edf.py プロジェクト: rajul/mne-python
def test_concat():
    """Test EDF concatenation"""
    _test_concat(read_raw_edf, bdf_path)
コード例 #6
0
ファイル: test_raw.py プロジェクト: Odingod/mne-python
def test_concat():
    """Test RawFIF concatenation"""
    _test_concat(read_raw_fif, test_fif_fname)