“генерировать случайную целочисленную матрицу Python” Ответ

генерировать случайную целочисленную матрицу 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

Как создать матрицу случайных целых чисел в 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

Ответы похожие на “генерировать случайную целочисленную матрицу Python”

Вопросы похожие на “генерировать случайную целочисленную матрицу Python”

Больше похожих ответов на “генерировать случайную целочисленную матрицу Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования