Exemple #1
0
def csch(x):
    import mpmath
    if x > 100:
        return 0
    else:
        return float(mpmath.csch(x))
Exemple #2
0
 def eval(self, z):
     return mpmath.csch(z)
Exemple #3
0
# -*- coding: utf-8 -*-
"""

Created by libsedmlscript v0.0.1
"""

from sed_roadrunner import model, task, plot

from mpmath import csch
#----------------------------------------------

csch(0.5)
Exemple #4
0
 def eval(self, z):
     return mpmath.csch(z)