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