Skip to content

Commit 70ea742

Browse files
Refactor docstring and remove unnecessary blank lines
Removed extra blank lines and cleaned up docstring.
1 parent af4446f commit 70ea742

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

maths/laplace_transformation.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,11 @@
11
"""
2-
32
Laplace Transform — Numerical Implementation.
43
54
Computes the numerical Laplace Transform using the trapezoidal
65
integration rule. Supports real-valued, non-negative Laplace
76
parameters only.
87
98
Reference: https://en.wikipedia.org/wiki/Laplace_transform
10-
11-
129
"""
1310

1411
import numpy as np
@@ -76,3 +73,4 @@ def laplace_transform(
7673
import doctest
7774

7875
doctest.testmod()
76+

0 commit comments

Comments
 (0)