> By the way, you seem puzzled by the behaviour of column_stack. I think
> it fits well with the docstring.

What was unexpected to me was its behavior when handling inputs that
are not 1-d.  The docstring doesn't say what will happen in that case.
 But my expectation is that it should associate.  I.e.:

    column_stack(( a,b,c ))

should be the same as:

    column_stack(( column_stack(( a,b )),c ))

But it's not.  column_stack((a,b,c)) is the same as:

    column_stack(( column_stack(( a,b )).transpose() ,c ))

--bb

-------------------------------------------------------------------------
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