On 11 Aug., 21:31, Matthew Rocklin <[email protected]> wrote: > I personally like the functions, dot(a,b), etc... and would be sad to see > them left out. If you had to kick one I would get rid of the object oriented > syntax a.dot(b). This is just a personal preference though.
I like about dot(a, b) that it is the general, clean syntax. a.dot(b) is nice for nested functions, so you can write a.dot(b).dot(c) instead of dot(dot(a, b), c). (In this case it does not apply for the dot product of course, but in general it might occur.) Vinzent -- You received this message because you are subscribed to the Google Groups "sympy" group. To post to this group, send email to [email protected]. 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.
