def test_decorr_time(): output = compute_decorr_time(sfreq, data2) # Output shape: assert_equal(output.shape, (n_channels,)) # Decorrelation times should all be > 0 assert_equal(np.all(compute_decorr_time(sfreq, data2) > 0), True)
def test_shape_output_decorr_time(): for j in range(n_epochs): feat = compute_decorr_time(sfreq, data[j, :, :]) assert_equal(feat.shape, (n_channels, ))