MCPcopy Create free account
hub / github.com/lazyprogrammer/machine_learning_examples / is_symmetric1

Function is_symmetric1

numpy_class/exercises/ex5.py:15–16  ·  view source on GitHub ↗
(A)

Source from the content-addressed store, hash-verified

13
14
15def is_symmetric1(A):
16 return np.all(A == A.T)
17
18
19def is_symmetric2(A):

Callers 1

checkFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected