예제 #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)