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'm porting over some R code and you can do something like this (x and centers are matrices):

nx <- nrow(x);
nc <- nrow(centers);
matrix(rowSums(x), nrow=nx, ncol=nc)

However numpy.matrix does not provide the nrow and ncol arguments. I tried using reshape, but you have to preserve the total number of elements (which does not seem to be the case for the R function).

How would I achieve the same effect in numpy?

share|improve this question

1 Answer

Does rowSums(x) * numpy.ones([nx, nc]) do what you want? It does provide an array instead of a matrix, but that is often better in numpy anyway.

share|improve this answer

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.