From: Alan G I. <ai...@am...> - 2006-06-22 02:01:17
|
> Alan G Isaac wrote: >> M.transpose()[V>0] >> If you want the columns as columns, >> you can transpose again. On Wed, 21 Jun 2006, Keith Goodman apparently wrote: > I can't get that to work when M is a n by m matrix: The problem is not M being a matrix. You made V a matrix (i.e., 2d). So you need to ravel() it first. >> M.transpose()[V.ravel()>0] hth, Alan Isaac |