I am working with a project to replace Matlab with Python, in a calculus course. Explicitly, following problem is solved in Matlab. It is an inhomogenous IVP with constant coefficients together with relevant IC's. In Matlab Code: Dy=diff(y(t),t); D2y=diff(Dy,t); g=8*t*(heaviside(t)-heaviside(t-5))+40*heaviside(t-5); ode=D2y+4*y-g ==0; My goal is to Laplace transform the equation, obtain a solution in frequency domain, and finally transform it back to time domain, obtaining the final solution. This procedure is successfully done by Matlab.
I address this issue to the developer team. Will it, in future releases of SymPy, be possible to solve this problem in Python/SymPy? -- 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 on the web visit https://groups.google.com/d/msgid/sympy/10568891-8a24-43aa-8f93-e1a6b7de72e6n%40googlegroups.com.
