“np.random.randint” Kode Jawaban

Int acak numpy

np.random.randint(2, size=10) # Creates binary sample of size 10
np.random.randint(5, size=10) # Creates sample with 0-4 as values of size 10

np.random.randint(5, size=(2, 4))
Comfortable Cockroach

menghasilkan python matriks integer acak

import numpy as np

randi_arr = np.random.randint(start, end, dimensions)
#random integers will be sampled from [start, end) (end not inclusive)
#end is optional; if end is not specified, random integers will be sampled from [0, start) (start not inclusive)
#dimensions can be specified as shown here; (m,n) #2D array with size 'm x n'
Plain Pintail

np.rand.randint

np.random.randint(0,10, size=(5, 5)) # random integers from 0 to 10 in size 5,5
#o/p 
array([[3, 9, 2, 3, 5],
       [2, 8, 7, 7, 1],
       [8, 2, 1, 1, 9],
       [9, 0, 5, 6, 4],
       [1, 6, 6, 4, 6]])
Sad Santa

np.random.randint untuk menghasilkan -1 1

2 * np.random.randint(2, size=10) -1
Just Science that Data

np.random.randint

# random.randint(low, high=None, size=None, dtype=int)
# [low,high) if high is given, else [0, low)
Gifted Guanaco

Jawaban yang mirip dengan “np.random.randint”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya