logo

numpy.zeros() Python

The numpy.zeros() funkcija grąžina naują nurodytos formos ir tipo masyvą su nuliais. Sintaksė:

numpy.zeros(shape, dtype = None, order = 'C')>

Parametrai:



  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.>

Grąžinimai:

ndarray of zeros having given shape, order and datatype.>

1 kodas:

Python



jei kitaip jei kitaip java




kas yra f5 klaviatūroje



# 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)>

>

>

Išvestis:

java loginė vertė į eilutę
Matrix b :   [0 0] Matrix a :   [[0 0]  [0 0]] Matrix c :   [[ 0. 0. 0.]  [ 0. 0. 0.]  [ 0. 0. 0.]]>

2 kodas: manipuliavimas duomenų tipais

Python

kaip konvertuoti int į eilutę




# 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)>

>

kaip sužinoti, ar kažkas jus užblokavo „Android“.
>

Išvestis:

[(0.0, 0) (0.0, 0)]>

Pastaba: nuliai, skirtingai nei nuliai ir tuščia, nenustato masyvo reikšmių atitinkamai į nulį arba atsitiktines reikšmes. Be to, šie kodai neveiks internetinėse IDE. Paleiskite juos savo sistemose, kad sužinotumėte, kaip veikia.