Frankly, I am not clear what you want to do. Can you give an example?
From: [email protected] <[email protected]> On Behalf Of Mr Y Sent: Monday, December 9, 2024 4:41 PM To: sympy <[email protected]> Subject: [sympy] Extending integration rules Hi! I'm new to SymPy so excuse me if this question is misplaced. Basically I would like to teach SymPy how to integrate my custom function: ``` from sympy import Function tau = symbols("tau") fn = Function("fn") gn = Function("gn") result = integrate(fn(tau), tau) ``` Is there a way to add my own rules to `integrate` routine? -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected] <mailto:[email protected]> . To view this discussion visit https://groups.google.com/d/msgid/sympy/6d3ef1f4-d6eb-43d0-8809-4d9fea262335n%40googlegroups.com <https://groups.google.com/d/msgid/sympy/6d3ef1f4-d6eb-43d0-8809-4d9fea262335n%40googlegroups.com?utm_medium=email&utm_source=footer> . -- You received this message because you are subscribed to the Google Groups "sympy" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion visit https://groups.google.com/d/msgid/sympy/038201db4b0f%245870c620%2409525260%24%40gmail.com.
