I am using Python 3 within Pyzo. Please could you tell me why the linalg.norm function does not recognise the axis argument.
This code:
c = np.array([[ 1, 2, 3],[-1, 1, 4]])
d=linalg.norm(c, axis=1)
returns the error:
TypeError: norm() got an unexpected keyword argument 'axis'