Skip to content

Commit

Permalink
misc: Descriptive comment added
Browse files Browse the repository at this point in the history
  • Loading branch information
amritagos committed Sep 11, 2024
1 parent d7a07ed commit de19ce6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion soluanalysis/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def biexponential_model(t: float, A: float, tau1: float, tau2: float) -> float:
tau2 (float): time constant
Returns:
float: _description_
float: Result of the expression, used for fitting
"""
return A * np.exp(-t / tau1) + (1 - A) * np.exp(-t / tau2)

Expand Down

0 comments on commit de19ce6

Please sign in to comment.