Exemple #1
0
def fabs(x):
    return Tensor.map(x, _math.fabs)
Exemple #2
0
def factorial(x):
    return Tensor.map(x, _math.factorial)
Exemple #3
0
def log2(x):
    return Tensor.map(x, _math.log2)
Exemple #4
0
def ceil(x):
    return Tensor.map(x, _math.ceil)
Exemple #5
0
def isnan(x):
    return Tensor.map(x, _math.isnan)
Exemple #6
0
def trunc(x):
    return Tensor.map(x, _math.trunc)
Exemple #7
0
def cosh(x):
    return Tensor.map(x, _math.cosh)
Exemple #8
0
def isfinite(x):
    return Tensor.map(x, _math.isfinite)
Exemple #9
0
def asinh(x):
    return Tensor.map(x, _math.asinh)
Exemple #10
0
def atanh(x):
    return Tensor.map(x, _math.atanh)
Exemple #11
0
def acosh(x):
    return Tensor.map(x, _math.acosh)
Exemple #12
0
def radians(x):
    return Tensor.map(x, _math.radians)
Exemple #13
0
def degrees(x):
    return Tensor.map(x, _math.degrees)
Exemple #14
0
def floor(x):
    return Tensor.map(x, _math.floor)
Exemple #15
0
def sinh(x):
    return Tensor.map(x, _math.sinh)
Exemple #16
0
def frexp(x):
    return Tensor.map(x, _math.frexp)
Exemple #17
0
def tanh(x):
    return Tensor.map(x, _math.tanh)
Exemple #18
0
def isinf(x):
    return Tensor.map(x, _math.isinf)
Exemple #19
0
def erfc(x):
    return Tensor.map(x, _math.erfc)
Exemple #20
0
def modf(x):
    return Tensor.map(x, _math.modf)
Exemple #21
0
def gamma(x):
    return Tensor.map(x, _math.gamma)
Exemple #22
0
def expm1(x):
    return Tensor.map(x, _math.expm1)
Exemple #23
0
def lgamma(x):
    return Tensor.map(x, _math.lgamma)
Exemple #24
0
def log10(x):
    return Tensor.map(x, _math.log10)
Exemple #25
0
def sqrt(x):
    return Tensor.map(x, _math.sqrt)