The numpy.zeros() funcția returnează o nouă matrice de formă și tip dat, cu zerouri. Sintaxă:
numpy.zeros(shape, dtype = None, order = 'C')>
Parametri:
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.>
Se intoarce :
ndarray of zeros having given shape, order and datatype.>
Cod 1:
Piton
# 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)> |
blocați reclamele youtube Android
>
>
Ieșire:
Matrix b : [0 0] Matrix a : [[0 0] [0 0]] Matrix c : [[ 0. 0. 0.] [ 0. 0. 0.] [ 0. 0. 0.]]>
Cod 2: Manipularea tipurilor de date
Piton
mit forma completa
# 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)> |
>
>
Ieșire:
[(0.0, 0) (0.0, 0)]>
Notă : zerouri, spre deosebire de zerouri și gol, nu setează valorile matricei la zero sau, respectiv, la valori aleatorii. De asemenea, aceste coduri nu vor rula pe IDE-uri online. Rulați-le pe sistemele dvs. pentru a explora modul de funcționare.