Math.js 是一个 JavaScript 的高级数学计算函数库。主要用于解决JavaScript的计算精度问题,其次提供了很多实用的数学计算库。
部署
NPM部署方式
npm install mathjs
import { sqrt } from 'mathjs'
console.log(sqrt(-4).toString()) // 2i
浏览器部署
<!DOCTYPE HTML>
<html>
<head>
<script src="math.js" type="text/javascript"></script>
</head>
<body>
<script type="text/javascript">
console.log(math.sqrt(-4).toString()) // 2i
</script>
</body>
</html>
相关链接
官方网站:https://mathjs.org/
Github地址:https://github.com/josdejong/mathjs
UNPKG代码托管:https://unpkg.com/browse/mathjs@10.5.3/
使用栗子
// functions and constants
math.round(math.e, 3) // 2.718
math.atan2(3, -3) / math.pi // 0.75
math.log(10000, 10) // 4
math.sqrt(-4) // 2i
math.pow([[-1, 2], [3, 1]], 2) // [[7, 0], [0, 7]]
// expressions
math.evaluate('12 / (2.3 + 0.7)') // 4
math.evaluate('12.7 cm to inch') // 5 inch
math.evaluate('sin(45 deg) ^ 2') // 0.5
math.evaluate('9 / 3 + 2i') // 3 + 2i
math.evaluate('det([-1, 2; 3, 1])') // -7
// chained operations
math.chain(3)
.add(4)
.multiply(2)
.done() // 14