On 9/19/06, Keith Goodman <[EMAIL PROTECTED]> wrote:
> Is there an easy way to use isnan to pull out the nans if the matrix I
> am sorting has more than one column?
>
There seems to be a "nan_to_num" function that converts nans to zeros,
but I would suggest just using fancy indexing to fill the nans with
appropriate values:

x[isnan(x)] = inf # if you want nans on the right

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys -- and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/numpy-discussion

Reply via email to