当前位置:   article > 正文

【人工智能学习之高数篇】_用ai学习高等数学

用ai学习高等数学

1. Python-Math 模块

1.1 Math模块函数

math 模块提供了浮点数的数学运算函数,返回值均为浮点数。
print(dir(math))所有函数:

['acos', 'acosh', 'asin', 'asinh', 'atan',
'atan2', 'atanh', 'ceil', 'comb', 'copysign',
'cos', 'cosh', 'degrees', 'dist', 'e', 'erf',
'erfc', 'exp', 'expm1', 'fabs', 'factorial',
'floor', 'fmod', 'frexp', 'fsum', 'gcd', 'gamma',
'hypot', 'inf', 'isclose', 'isfinite', 'isinf',
'isnan', 'isqrt', 'lcm', 'ldexp', 'lgamma', 'log',
'log10', 'log1p', 'log2', 'modf', 'nan',
'nextafter', 'perm', 'pi', 'pow', 'prod',
'radians', 'remainder', 'sin', 'sinh', 'sqrt',
'tan', 'tanh', 'tau', 'trunc', 'ulp']
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

1.2 Python内置数学函数

print(abs(-100))
print(divmod(5, 2))
print(max(1, 2, 3))
print(min(1, 2, 3))
print(pow(2, 3))
print(round(1.5555, 2))
print(sum((1
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/在线问答5/article/detail/1015524
推荐阅读
相关标签
  

闽ICP备14008679号