(no title)
fddr | 11 years ago
I disagree with you, and think it's definitely a feature. If you are doing scientific computing it can be much more readable to use infix overloaded operators. What is better, `np.dot(x.T(), np.dot(M, x))` or `x.T() @ M @ x`? I find the second much more readable.
I get it that operator overloading can be abused and lead to unreadable code, but in some use cases it is a godsend.
hk__2|11 years ago
dagw|11 years ago