Hello,

there is a mistake in the col method of the matrix-class: it should call
f with argument i rather than j (see attached patch).

Regards,

Stefan Witzel

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"sympy" group.
To post to this group, send email to sympy@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/sympy?hl=en
-~----------~----~----~----~------~----~------~--~---

312c312
<             self[i, j] = f(self[i, j], j)
---
>             self[i, j] = f(self[i, j], i)

Reply via email to