I was trying to apply functions at the end of an expression, for example:
expr //Simplify
But sometimes I need additional arguments for Simplify[] such as:
Simplify[expr, TimeConstraint->5]
Is there a way to do this using the // notation?
I was trying to apply functions at the end of an expression, for example:
expr //Simplify
But sometimes I need additional arguments for Simplify[] such as:
Simplify[expr, TimeConstraint->5]
Is there a way to do this using the // notation?
expr // Simplify[#, TimeConstraint->5]&– kglr Sep 17 '20 at 18:02