The numpy.zeros() функція повертає новий масив заданої форми та типу з нулями. Синтаксис:
numpy.zeros(shape, dtype = None, order = 'C')>
Параметри:
shape : integer or sequence of integers order : C_contiguous or F_contiguous C-contiguous order in memory(last index varies the fastest) C order means that operating row-rise on the array will be slightly quicker FORTRAN-contiguous order in memory (first index varies the fastest). F order means that column-wise operations will be faster. dtype : [optional, float(byDeafult)] Data type of returned array.>
Повернення:
шаблони проектування в java
ndarray of zeros having given shape, order and datatype.>
Код 1:
Python
# Python Program illustrating> # numpy.zeros method> > import> numpy as geek> > b>=> geek.zeros(>2>, dtype>=> int>)> print>(>'Matrix b :
'>, b)> > a>=> geek.zeros([>2>,>2>], dtype>=> int>)> print>(>'
Matrix a :
'>, a)> > c>=> geek.zeros([>3>,>3>])> print>(>'
Matrix c :
'>, c)> |
>
>
Вихід:
Matrix b : [0 0] Matrix a : [[0 0] [0 0]] Matrix c : [[ 0. 0. 0.] [ 0. 0. 0.] [ 0. 0. 0.]]>
Код 2: Маніпулювання типами даних
Python
іменування правил java
# Python Program illustrating> # numpy.zeros method> > import> numpy as geek> > # manipulation with data-types> b>=> geek.zeros((>2>,), dtype>=>[(>'x'>,>'float'>), (>'y'>,>'int'>)])> print>(b)> |
>
listnode java
>
Вихід:
[(0.0, 0) (0.0, 0)]>
Примітка : нули, на відміну від нулів і пустого, не встановлює значення масиву на нуль або випадкові значення відповідно. Крім того, ці коди не працюватимуть в онлайн-IDE. Будь ласка, запустіть їх у своїх системах, щоб дослідити роботу.