コード例 #1
0
def arctangente(left, right):
    if DocumentDictionary.isRad():
        return math.atan(left)
    else:
        return math.atan(math.radians(left))
コード例 #2
0
def arccosinus(left, right):
    if DocumentDictionary.isRad():
        return math.acos(left)
    else:
        return math.acos(math.radians(left))
コード例 #3
0
def arcsinhyp(left, right):
    if DocumentDictionary.isRad():
        return math.asinh(left)
    else:
        return math.asinh(math.radians(left))
コード例 #4
0
def sinus(left, right):
    if DocumentDictionary.isRad():
        return math.sin(left)
    else:
        return math.sin(math.radians(left))
コード例 #5
0
def coshyp(left, right):
    if DocumentDictionary.isRad():
        return math.cosh(left)
    else:
        return math.cosh(math.radians(left))