“Wygeneruj losową matrycę całkowitą Python” Kod odpowiedzi

Wygeneruj losową matrycę całkowitą Python

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

Jak tworzysz matrycę losowych liczb całkowitych w Numpy?

# importing numpy library
import numpy as np  
  
# random is a function, doing random sampling in numpy.
array = np.random.randint(10, size=(20))
  
# the array will be having 20 elements.
print(array)https://www.geeksforgeeks.org/how-to-create-a-matrix-of-random-integers-in-python/#:~:text=To%20create%20a%20matrix%20of%20random%20integers%20in%20Python%2C%20randint,cannot%20be%20predicted%20at%20hand.&text=Parameters%20%3A,be%20drawn%20from%20the%20distribution.
Jealous Jackal

Odpowiedzi podobne do “Wygeneruj losową matrycę całkowitą Python”

Pytania podobne do “Wygeneruj losową matrycę całkowitą Python”

Więcej pokrewnych odpowiedzi na “Wygeneruj losową matrycę całkowitą Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu