Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a 2D matrix and I want to take norm of each row. But when I use numpy.linalg.norm(X) directly, it takes the norm of the whole matrix.

I can take norm of each row by using a for loop and then taking norm of each X[i] but it takes a huge time since I have 30k rows.

Any suggestions to find a quicker way? Or is it possible to apply np.linalg.norm to each row of a matrix?

share|improve this question

2 Answers

up vote 18 down vote accepted

If you are computing an L2-norm, you could compute it directly (using the axis=-1 argument to sum along rows):

np.sum(np.abs(x)**2,axis=-1)**(1./2)

Lp-norms can be computed similarly of course.

It is considerably faster than np.apply_along_axis, though perhaps not as convenient:

In [48]: %timeit np.apply_along_axis(np.linalg.norm, 1, x)
1000 loops, best of 3: 208 us per loop

In [49]: %timeit np.sum(np.abs(x)**2,axis=-1)**(1./2)
100000 loops, best of 3: 18.3 us per loop

Other ord forms of norm can be computed directly too (with similar speedups):

In [55]: %timeit np.apply_along_axis(lambda row:np.linalg.norm(row,ord=1), 1, x)
1000 loops, best of 3: 203 us per loop

In [54]: %timeit np.sum(abs(x), axis=-1)
100000 loops, best of 3: 10.9 us per loop
share|improve this answer
(+1) for the benchmarks. – NPE Oct 12 '11 at 14:54
1  
Why do you do np.abs(x) if you square x anyway? – Patrick Jan 3 at 15:17
2  
@Patrick: If the dtype of x is complex, then it makes a difference. For example, if x = np.array([(1+1j,2+1j)]) then np.sum(np.abs(x)**2,axis=-1)**(1./2) is array([ 2.64575131]), while np.sum(x**2,axis=-1)**(1./2) is array([ 2.20320266+1.36165413j]). – unutbu Jan 3 at 20:15

Try the following:

In [16]: numpy.apply_along_axis(numpy.linalg.norm, 1, a)
Out[16]: array([ 5.38516481,  1.41421356,  5.38516481])

where a is your 2D array.

The above computes the L2 norm. For a different norm, you could use something like:

In [22]: numpy.apply_along_axis(lambda row:numpy.linalg.norm(row,ord=1), 1, a)
Out[22]: array([9, 2, 9])
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.