“Numpy prüfen, ob 2 Array identisch ist” Code-Antworten

Numpy prüfen, ob 2 Array identisch ist

# Chck if two arrays are identical
import numpy as np
 
an_array = np.array([[1, 2], [3, 4]])
another_array = np.array([[1, 2], [3, 4]])
 
comparison = an_array == another_array
equal_arrays = comparison.all()
 
print(equal_arrays)
Magnificent Moth

Überprüfen Sie, ob Numpy Array nur Duplikate enthält

# Check all values in an array are equal to its first element
result = np.all(arr == arr[0])
if result:
    print('All values in the array are the same / equal')
else:
    print('All values in the array are not the same')
Abstraction Mage

Ähnliche Antworten wie “Numpy prüfen, ob 2 Array identisch ist”

Fragen ähnlich wie “Numpy prüfen, ob 2 Array identisch ist”

Weitere verwandte Antworten zu “Numpy prüfen, ob 2 Array identisch ist” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen