numpy.arange() v Pythonu

The arange([start,] stop[, step,][, dtype]): Vrátí pole s rovnoměrně rozmístěnými prvky podle intervalu. Uvedený interval je napůl otevřený, tj. [Start, Stop)

Parametry:

 start :  [optional] start of interval range. By default start = 0 stop :  end of interval range step :  [optional] step size of interval. By default step size = 1, For any output out, this is the distance between two adjacent values, out[i+1] - out[i]. dtype :  type of output array 

Vrátit se:

Array of evenly spaced values. Length of array being generated = Ceil((Stop - Start) / Step) 

Příklad:

Python3




# Python Programming illustrating> # numpy.arange method> import> numpy as geek> print> (> 'A '> , geek.arange(> 4> ).reshape(> 2> ,> 2> ),> ' '> )> print> (> 'A '> , geek.arange(> 4> ,> 10> ),> ' '> )> print> (> 'A '> , geek.arange(> 4> ,> 20> ,> 3> ),> ' '> )>

Výstup :

A [[0 1] [2 3]] A [4 5 6 7 8 9] A [ 4 7 10 13 16 19] 

Poznámka:

  • Tyto programy NumPy-Python nepoběží na onlineID, takže je spusťte na svých systémech a prozkoumejte je.
  • Výhodou numpy.arange() oproti běžné vestavěné funkci range() je to, že nám umožňuje generovat sekvence čísel, která nejsou celá.

Příklad:

Python3




# Python Programming illustrating> # numpy.arange method> import> numpy as np> # Printing all numbers from 1 to> # 2 in steps of 0.1> print> (np.arange(> 1> ,> 2> ,> 0.1> ))>

Výstup:

[1. 1.1 1.2 1.3 1.4 1.5 1.6 1.7 1.8 1.9] 

Pokud to zkusíte s funkcí range(), dostanete TypeError.