De numpy.zeros() funktion returnerar en ny array av given form och typ, med nollor. Syntax:
numpy.zeros(shape, dtype = None, order = 'C')>
Parametrar:
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.>
Returnerar:
ndarray of zeros having given shape, order and datatype.>
Kod 1:
Pytonorm
java annat om
första bärbara datorn
# 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)> |
>
>
Utgång:
cpld vs FPGA
Matrix b : [0 0] Matrix a : [[0 0] [0 0]] Matrix c : [[ 0. 0. 0.] [ 0. 0. 0.] [ 0. 0. 0.]]>
Kod 2 : Manipulera datatyper
Pytonorm
stack 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)> |
>
java strängmetoder
>
Utgång:
[(0.0, 0) (0.0, 0)]>
Notera : nollor, till skillnad från nollor och tom, ställer inte arrayvärdena till noll respektive slumpmässiga värden. Dessa koder kommer inte heller att köras på online-IDE. Kör dem på dina system för att utforska hur de fungerar.