如何表示数学常数“e”?作为 JavaScript 中的值?
如何在 JavaScript 中将数学常量“e”表示为值?
How can you represent mathematical constant "e" as a value in JavaScript?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 JavaScript 中将数学常量“e”表示为值?
How can you represent mathematical constant "e" as a value in JavaScript?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(7)
这很简单
It's as easy as
其他方法包括:
近似值:
3-sqrt(5/63)
或
适合 7 位数字
,
163^(32/163)
适合 6 位数字Other ways include:
Approximations:
3-sqrt(5/63)
or
which are good to 7 digits
and
163^(32/163)
which is good to 6 digits答案太短了,所以这里有一个更长的版本。
数学E
Answer was too short, so here is a much much longer version.
Math.E
我相信
Math.E
就是您想要的。I believe
Math.E
is what you want.您可以使用常量:
You could use the constant:
JavaScript 提供了许多可以从
Math 对象
访问的数学常量。你想要的是
Math.E
JavaScript provides many mathematical constants that can be accessed from the
Math object
.The one you want is
Math.E
e 由 Math.E 表示。但如果您的目的是计算 e^x,则不要编写 Math.E^x。请改用 Math.exp(x)。这并不是第一次有人在真正想要 exp 时要求 e。
e is represented by Math.E. But if your intention is to compute e^x, don't write Math.E^x. Use Math.exp(x) instead. It wouldn't be the first time someone has asked for e when they really want exp.