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