Answers for "how to all up all the values in a row numpy"

1

sum along axis python

import numpy as np
matrix=np.ones((10,10))
print(matrix.sum(axis=0))
print(matrix.sum(axis=1))
Posted by: Guest on March-21-2020

Code answers related to "how to all up all the values in a row numpy"

Python Answers by Framework

Browse Popular Code Answers by Language