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.

If you have two numpy matrices, how can you join them together into one? They should be joined horizontally, so that

[[0]         [1]               [[0][1]
 [1]     +   [0]         =      [1][0]
 [4]         [1]                [4][1]
 [0]]        [1]]               [0][1]]

For example, with these matrices:

>>type(X)
>>type(Y)
>>X.shape
>>Y.shape
<class 'numpy.matrixlib.defmatrix.matrix'>
<class 'numpy.matrixlib.defmatrix.matrix'>
(53, 1)
(53, 1)

I have tried hstack but get an error:

>>Z = hstack([X,Y])

Traceback (most recent call last):
  File "labels.py", line 85, in <module>
    Z = hstack([X, Y])
  File "C:\Python27\lib\site-packages\scipy\sparse\construct.py", line 263, in h
stack
    return bmat([blocks], format=format, dtype=dtype)
  File "C:\Python27\lib\site-packages\scipy\sparse\construct.py", line 329, in b
mat
    raise ValueError('blocks must have rank 2')
ValueError: blocks must have rank 2
share|improve this question
It should work. Oddly enough, your error message refer to sparse matrices while your type(X) says you have matrices and not sparse matrices. – Nicolas Barbey Sep 3 '12 at 11:16

1 Answer

up vote 5 down vote accepted

Judging from the traceback, it seems like you've done from scipy.sparse import * or something similar, so that numpy.hstack is shadowed by scipy.sparse.hstack. numpy.hstack works fine:

>>> X = np.matrix([[0, 1, 4, 0]]).T
>>> Y = np.matrix([[1, 0, 1, 1]]).T
>>> np.hstack([X, Y])
matrix([[0, 1],
        [1, 0],
        [4, 1],
        [0, 1]])

This is why you should really not use import *.

share|improve this answer
+1 thanks.. ah yes, I was using scipy.sparse.hstack instead! – Zach Sep 3 '12 at 11:19
@Zach: you're welcome. It's a bit unfortunate that scipy.sparse.hstack cannot handle dense matrices. – larsmans Sep 3 '12 at 11:20
1  
That's why you should learn to read error messages :) – Karl Knechtel Sep 3 '12 at 11:23
yes, it's also unfortunate that both scipy and numpy have functions with the same name as when you import both there can be namespace confusion in which method you are calling! – Zach Sep 3 '12 at 11:59

Your Answer

 
discard

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

Not the answer you're looking for? Browse other questions tagged or ask your own question.