当前位置: 首页 > 工具软件 > ONES > 使用案例 >

numpy.ones用法

华良平
2023-12-01

实例:1.>>np.ones(5)

array([ 1.,  1.,  1.,  1.,  1.])

2. >> np.ones((5,), dtype=int)

array([1, 1, 1, 1, 1])

3.>> np.ones((2, 1))

array([[ 1.],
       [ 1.]])

4.>> s = (2,2)

>> np.ones(s)

array([[ 1.,  1.],
       [ 1.,  1.]])

 

 类似资料: