Status: Valid
Owner: ----
Labels: Type-Enhancement Priority-Medium Matrices

New issue 3702 by [email protected]: Elemwise Matrix Operation
http://code.google.com/p/sympy/issues/detail?id=3702

We should have a way to broadcast any scalar operation to a matrix operation by applying it element-wise.

It could look like this:

class Elemwise(MatrixExpr):
   def __new__(cls, fn, X):
       ...

And be used like this

X = MatrixSymbol('X', 3, 4)
Y = Elemwise(sin, X)

or

x = Symbol('x')
Y = Elemwise(Lambda(x, cos(x)**2), X)

HadamardProduct would be a good model for this work.  It is a special case.

--
You received this message because this project is configured to send all issue notifications to this address.
You may adjust your notification preferences at:
https://code.google.com/hosting/settings

--
You received this message because you are subscribed to the Google Groups 
"sympy-issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/sympy-issues?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to