1
\$\begingroup\$

I need a NumPy matrix with comparisons among all elements in a sequence:

from numpy import matrix
seq = [0, 1, 2, 3]
matrix([[cmp(a, b) for a in seq] for b in seq])

I'd like to know if there is a better way to do this.

Jamal
35.2k13 gold badges134 silver badges238 bronze badges
asked Jul 5, 2012 at 17:22
\$\endgroup\$
1
  • \$\begingroup\$ Useful reference for anyone wanting to take this on: scipy.org/NumPy_for_Matlab_Users \$\endgroup\$ Commented Jul 6, 2012 at 15:02

1 Answer 1

5
\$\begingroup\$

Why are you using matrix rather than array? I recommend sticking with array

As for a better way:

seq = numpy.array([0, 1, 2, 3])
numpy.clip(seq[:,None] - seq, -1, 1)
  1. seq[:, None], moves the numbers into the second dimension of the array
  2. seq[:, None] - seq broadcasts the numbers against each other, and subtracts them.
  3. numpy.clip converts lower/higher values into 1 and -1
answered Jul 6, 2012 at 15:06
\$\endgroup\$

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.