当前位置: 首页>>代码示例>>Python>>正文


Python mlab.stride_repeat方法代码示例

本文整理汇总了Python中matplotlib.mlab.stride_repeat方法的典型用法代码示例。如果您正苦于以下问题:Python mlab.stride_repeat方法的具体用法?Python mlab.stride_repeat怎么用?Python mlab.stride_repeat使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在matplotlib.mlab的用法示例。


在下文中一共展示了mlab.stride_repeat方法的12个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_stride_ensure_integer_type

# 需要导入模块: from matplotlib import mlab [as 别名]
# 或者: from matplotlib.mlab import stride_repeat [as 别名]
def test_stride_ensure_integer_type(self):
        N = 100
        x = np.empty(N + 20, dtype='>f4')
        x.fill(np.NaN)
        y = x[10:-10]
        y.fill(0.3)
        # previous to #3845 lead to corrupt access
        y_strided = mlab.stride_windows(y, n=33, noverlap=0.6)
        assert_array_equal(y_strided, 0.3)
        # previous to #3845 lead to corrupt access
        y_strided = mlab.stride_windows(y, n=33.3, noverlap=0)
        assert_array_equal(y_strided, 0.3)
        # even previous to #3845 could not find any problematic
        # configuration however, let's be sure it's not accidentally
        # introduced
        y_strided = mlab.stride_repeat(y, n=33.815)
        assert_array_equal(y_strided, 0.3) 
开发者ID:miloharper,项目名称:neural-network-animation,代码行数:19,代码来源:test_mlab.py

示例2: test_stride_repeat_2D_ValueError

# 需要导入模块: from matplotlib import mlab [as 别名]
# 或者: from matplotlib.mlab import stride_repeat [as 别名]
def test_stride_repeat_2D_ValueError(self):
        x = np.arange(10)[np.newaxis]
        assert_raises(ValueError, mlab.stride_repeat, x, 5) 
开发者ID:miloharper,项目名称:neural-network-animation,代码行数:5,代码来源:test_mlab.py

示例3: test_stride_repeat_axis_lt_0_ValueError

# 需要导入模块: from matplotlib import mlab [as 别名]
# 或者: from matplotlib.mlab import stride_repeat [as 别名]
def test_stride_repeat_axis_lt_0_ValueError(self):
        x = np.array(0)
        assert_raises(ValueError, mlab.stride_repeat, x, 5, axis=-1) 
开发者ID:miloharper,项目名称:neural-network-animation,代码行数:5,代码来源:test_mlab.py

示例4: test_stride_repeat_axis_gt_1_ValueError

# 需要导入模块: from matplotlib import mlab [as 别名]
# 或者: from matplotlib.mlab import stride_repeat [as 别名]
def test_stride_repeat_axis_gt_1_ValueError(self):
        x = np.array(0)
        assert_raises(ValueError, mlab.stride_repeat, x, 5, axis=2) 
开发者ID:miloharper,项目名称:neural-network-animation,代码行数:5,代码来源:test_mlab.py

示例5: test_stride_repeat_n_lt_1_ValueError

# 需要导入模块: from matplotlib import mlab [as 别名]
# 或者: from matplotlib.mlab import stride_repeat [as 别名]
def test_stride_repeat_n_lt_1_ValueError(self):
        x = np.arange(10)
        assert_raises(ValueError, mlab.stride_repeat, x, 0) 
开发者ID:miloharper,项目名称:neural-network-animation,代码行数:5,代码来源:test_mlab.py

示例6: test_stride_repeat_n1_axis0

# 需要导入模块: from matplotlib import mlab [as 别名]
# 或者: from matplotlib.mlab import stride_repeat [as 别名]
def test_stride_repeat_n1_axis0(self):
        x = np.arange(10)
        y = mlab.stride_repeat(x, 1)
        assert_equal((1, ) + x.shape, y.shape)
        assert_array_equal(x, y.flat)
        assert_true(self.get_base(y) is x) 
开发者ID:miloharper,项目名称:neural-network-animation,代码行数:8,代码来源:test_mlab.py

示例7: test_stride_repeat_n5_axis0

# 需要导入模块: from matplotlib import mlab [as 别名]
# 或者: from matplotlib.mlab import stride_repeat [as 别名]
def test_stride_repeat_n5_axis0(self):
        x = np.arange(10)
        y = mlab.stride_repeat(x, 5)
        yr = np.repeat(x[np.newaxis], 5, axis=0)
        assert_equal(yr.shape, y.shape)
        assert_array_equal(yr, y)
        assert_equal((5, ) + x.shape, y.shape)
        assert_true(self.get_base(y) is x) 
开发者ID:miloharper,项目名称:neural-network-animation,代码行数:10,代码来源:test_mlab.py

示例8: test_stride_repeat_n5_axis1

# 需要导入模块: from matplotlib import mlab [as 别名]
# 或者: from matplotlib.mlab import stride_repeat [as 别名]
def test_stride_repeat_n5_axis1(self):
        x = np.arange(10)
        y = mlab.stride_repeat(x, 5, axis=1)
        yr = np.repeat(x[np.newaxis], 5, axis=0).T
        assert_equal(yr.shape, y.shape)
        assert_array_equal(yr, y)
        assert_equal(x.shape + (5, ), y.shape)
        assert_true(self.get_base(y) is x) 
开发者ID:miloharper,项目名称:neural-network-animation,代码行数:10,代码来源:test_mlab.py

示例9: test_stride_repeat_invalid_input_shape

# 需要导入模块: from matplotlib import mlab [as 别名]
# 或者: from matplotlib.mlab import stride_repeat [as 别名]
def test_stride_repeat_invalid_input_shape(self, shape):
        x = np.arange(np.prod(shape)).reshape(shape)
        with pytest.raises(ValueError):
            mlab.stride_repeat(x, 5) 
开发者ID:holzschu,项目名称:python3_ios,代码行数:6,代码来源:test_mlab.py

示例10: test_stride_repeat_invalid_axis

# 需要导入模块: from matplotlib import mlab [as 别名]
# 或者: from matplotlib.mlab import stride_repeat [as 别名]
def test_stride_repeat_invalid_axis(self, axis):
        x = np.array(0)
        with pytest.raises(ValueError):
            mlab.stride_repeat(x, 5, axis=axis) 
开发者ID:holzschu,项目名称:python3_ios,代码行数:6,代码来源:test_mlab.py

示例11: test_stride_repeat_n_lt_1_ValueError

# 需要导入模块: from matplotlib import mlab [as 别名]
# 或者: from matplotlib.mlab import stride_repeat [as 别名]
def test_stride_repeat_n_lt_1_ValueError(self):
        x = np.arange(10)
        with pytest.raises(ValueError):
            mlab.stride_repeat(x, 0) 
开发者ID:holzschu,项目名称:python3_ios,代码行数:6,代码来源:test_mlab.py

示例12: test_stride_repeat

# 需要导入模块: from matplotlib import mlab [as 别名]
# 或者: from matplotlib.mlab import stride_repeat [as 别名]
def test_stride_repeat(self, n, axis):
        x = np.arange(10)
        y = mlab.stride_repeat(x, n, axis=axis)

        expected_shape = [10, 10]
        expected_shape[axis] = n
        yr = np.repeat(np.expand_dims(x, axis), n, axis=axis)

        assert yr.shape == y.shape
        assert_array_equal(yr, y)
        assert tuple(expected_shape) == y.shape
        assert self.get_base(y) is x 
开发者ID:holzschu,项目名称:python3_ios,代码行数:14,代码来源:test_mlab.py


注:本文中的matplotlib.mlab.stride_repeat方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。