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