“Numpy -Säule” Code-Antworten

Drucken Sie die Spalte in 2D Numpy Array

import numpy as np
x=np.arange(25).reshape(5,5)
print(x)
#print(x[:,index_of_column_you_need])
print(x[:,3])
Aryan Solanki

Holen Sie sich die Spalte oder Zeile von Matrix -Array Numpy Python

test = numpy.array([[1, 2], [3, 4], [5, 6]])
column = test[:,0]
# column == array([1, 3, 5])
row = test[1,:]
# row == array([3, 4])
Anxious Alligator

Numpy -Säule

>>> test[:,0]
array([1, 3, 5])
Xanthous Xenomorph

Ähnliche Antworten wie “Numpy -Säule”

Fragen ähnlich wie “Numpy -Säule”

Weitere verwandte Antworten zu “Numpy -Säule” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen