On 3/27/07, Alan Isaac <[EMAIL PROTECTED]> wrote:
> May I see a use case where the desired
> return when iterating through a matrix
> is rows as matrices?  That has never
> been what I wanted.

If you use a row vector convention it make plenty of sense.

AllMyPoints = mat(rand(100,2)) # 100 two-d points
for pt in AllMyPoints:
    xformedPt = pt * TransformMatrix
    # do something to transformed point

--bb
_______________________________________________
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://projects.scipy.org/mailman/listinfo/numpy-discussion

Reply via email to