Ejemplo n.º 1
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)
Ejemplo n.º 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)
def test_concat():
    """Test EDF concatenation
    """
    _test_concat(read_raw_kit, sqd_path)
Ejemplo n.º 4
0
def test_concat():
    """Test EDF concatenation"""
    _test_concat(read_raw_edf, bdf_path)
Ejemplo n.º 5
0
def test_concat():
    """Test EDF concatenation"""
    _test_concat(read_raw_edf, bdf_path)
Ejemplo n.º 6
0
def test_concat():
    """Test RawFIF concatenation"""
    _test_concat(read_raw_fif, test_fif_fname)