7

I have this array

   A = array([[-0.49740509, -0.48618909, -0.49145315],
   [-0.48959259, -0.48618909, -0.49145315],
   [-0.49740509, -0.47837659, -0.49145315],
   ..., 
   [ 0.03079315, -0.01194593, -0.06872366],
   [ 0.03054901, -0.01170179, -0.06872366],
   [ 0.03079315, -0.01170179, -0.06872366]])

which is a collection of 3D vector. I was wondering if I could use a vectorial operation to get an array with the norm of each of my vector.

I tried with norm(A) but it didn't work.

Brian
  • 13,996
  • 19
  • 70
  • 94
  • yes, is it relevant to what I've asked? – Brian May 20 '12 at 14:55
  • 3
    I think it is yes. [`numpy.array`](http://docs.scipy.org/doc/numpy/reference/generated/numpy.array.html) is different from the [`array`](http://docs.python.org/library/array.html) class in Python. I assume that you want answers related to `numpy.array`? – Mark Byers May 20 '12 at 14:56
  • 1
    FYI: In the next release of numpy (1.8.0), you will be able to use the `axis` argument: `norm(A, axis=1)`. – Warren Weckesser Jul 18 '13 at 22:04

4 Answers4

9

Doing it manually might be fastest (although there's always some neat trick someone posts I didn't think of):

In [75]: from numpy import random, array

In [76]: from numpy.linalg import norm

In [77]: 

In [77]: A = random.rand(1000,3)

In [78]: timeit normedA_0 = array([norm(v) for v in A])
100 loops, best of 3: 16.5 ms per loop

In [79]: timeit normedA_1 = array(map(norm, A))
100 loops, best of 3: 16.9 ms per loop

In [80]: timeit normedA_2 = map(norm, A)
100 loops, best of 3: 16.7 ms per loop

In [81]: timeit normedA_4 = (A*A).sum(axis=1)**0.5
10000 loops, best of 3: 46.2 us per loop

This assumes everything's real. Could multiply by the conjugate instead if that's not true.

Update: Eric's suggestion of using math.sqrt won't work -- it doesn't handle numpy arrays -- but the idea of using sqrt instead of **0.5 is a good one, so let's test it.

In [114]: timeit normedA_4 = (A*A).sum(axis=1)**0.5
10000 loops, best of 3: 46.2 us per loop

In [115]: from numpy import sqrt

In [116]: timeit normedA_4 = sqrt((A*A).sum(axis=1))
10000 loops, best of 3: 45.8 us per loop

I tried it a few times, and this was the largest difference I saw.

DSM
  • 342,061
  • 65
  • 592
  • 494
2

just had the same prob, maybe late to answer but this should help others. You can use the axis argument in the norm function

norm(A, axis=1)
Shade
  • 33
  • 5
0

How about this method? Also you might want to add a [numpy] tag to the post.

Joel Cornett
  • 24,192
  • 9
  • 66
  • 88
Junuxx
  • 14,011
  • 5
  • 41
  • 71
  • Initially I thought you couldn't find the `linalg.norm` method as you said norm(A) "didn't work", but after reading Eric's answer I guess it's more likely that you did try `linalg.norm` but it didn't give you what you wanted. – Junuxx May 20 '12 at 15:02
  • @JoelCornett: As a result of the OP being vague with "it didn't work". He might have explained what he tried and how it didn't work. Like I explained in my comment above. – Junuxx May 20 '12 at 15:24
  • You're right. This is more of a case of OP being obscure. Redacted. – Joel Cornett May 20 '12 at 15:57
0

Having never used numpy, I'm going to guess:

normedA = array(norm(v) for v in A)
Eric
  • 95,302
  • 53
  • 242
  • 374