full函数 用确定的数值创建数组
1 | np.full((n行, n列), value) |
例子
1 | 2, 2), 10) np.full(( |
1 | >>>np.full((2,2), 3) |
1 | 3, 5), 7) np.full(( |
1 | 3, 5), 7, dtype=int) np.full(( |
创建一个3×5的浮点型数组,数组的值都是3.14:
1 | np.full((3, 5), 3.14) |
Fantastic Magic World!
1 | >>> np.full((n行, n列), value) |
1 | >>> np.full((2, 2), 10) |
1 | >>>np.full((2,2), 3) |
1 | >>> np.full((3, 5), 7) |
1 | >>> np.full((3, 5), 7, dtype=int) |
创建一个3×5的浮点型数组,数组的值都是3.14:
1 | np.full((3, 5), 3.14) |