Operador "In" para matrizes numpy?

Como posso fazer a operação "in" em uma matriz numpy? (Retorne True se um elemento estiver presente na matriz numpy especificada)

Para strings, listas e dicionários, a funcionalidade é intuitiva de entender.

Aqui está o que eu recebi quando apliquei isso em uma matriz numpy

a
array([[[2, 3, 0],
    [1, 0, 1]],

   [[3, 2, 0],
    [0, 1, 1]],

   [[2, 2, 0],
    [1, 1, 1]],

   [[1, 3, 0],
    [2, 0, 1]],

   [[3, 1, 0],
    [0, 2, 1]]])

b = [[3, 2, 0],
    [0, 1, 1]]

b in a
True
#Aligned with the expectation

c = [[300, 200, 0],
    [0, 100, 100]]

c in a
True
#Not quite what I expected

questionAnswers(1)

yourAnswerToTheQuestion