Answers for "np.zeros 2d array"

11

declare numpy zeros matrix python

import numpy as np
dimensions = (3, 3)
np.zeros(dimensions) # 3x3 zeros matrix
Posted by: Guest on August-30-2020
1

python 2d array with zeros

a = [[0]*10]*10
Posted by: Guest on July-18-2021
14

np.zeros

>>> np.zeros((2, 1))
array([[ 0.],
       [ 0.]])
Posted by: Guest on April-20-2020
2

np.zeros((3,3))

>>> s = (3,3)
>>> np.zeros(s)
array([[ 0.,  0.],
       [ 0.,  0.]])
Posted by: Guest on April-30-2020

Python Answers by Framework

Browse Popular Code Answers by Language