“Generieren Sie eine zufällige Ganzzahl -Matrix Python” Code-Antworten

Generieren Sie eine zufällige Ganzzahl -Matrix 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

Wie erstellt man eine Matrix von zufälligen Ganzzahlen in 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

Ähnliche Antworten wie “Generieren Sie eine zufällige Ganzzahl -Matrix Python”

Fragen ähnlich wie “Generieren Sie eine zufällige Ganzzahl -Matrix Python”

Weitere verwandte Antworten zu “Generieren Sie eine zufällige Ganzzahl -Matrix Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen