https://github.com/tgashwinkumar/ltransf
A Symbolic Library for finding Laplace transforms for provided mathematical expressions.
https://github.com/tgashwinkumar/ltransf
laplace-transform math python symbolic-math
Last synced: about 2 months ago
JSON representation
A Symbolic Library for finding Laplace transforms for provided mathematical expressions.
- Host: GitHub
- URL: https://github.com/tgashwinkumar/ltransf
- Owner: tgashwinkumar
- License: mit
- Created: 2021-05-25T11:37:51.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-07-01T05:33:07.000Z (over 4 years ago)
- Last Synced: 2025-06-23T02:42:56.286Z (4 months ago)
- Topics: laplace-transform, math, python, symbolic-math
- Language: Python
- Homepage:
- Size: 57.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# pip install transf
A Math library for finding Laplace transforms for simple expressions. This library uses string modification and pattern evalutaion via lexer and Shunting yard algorithm for its parser which is later converted to Expression nodes to evaluate the given expression. Currently, its under further development. But still its usable for limited purposes.
## Usage
from ltransf import LaplaceOf
expr = LaplaceOf("3*sin(3*t)")
print(expr.evaluate())
> Happy coding !