如何在颤振中实现 ln(x)

发布于 2025-01-16 02:15:17 字数 87 浏览 0 评论 0原文

如何在 flutter 中实现 ln(x) ?我可以使用数学包吗?

我知道 ln(x) = Loge(x)

找不到包来为我做到这一点

how can I Implement the ln(x) in flutter? Can I use Math package?

I know that ln(x) = Loge(x)

Not found package to do that for me

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

愛放△進行李 2025-01-23 02:15:17

来自 log 函数dart:math 已经给出了自然对数:

x 转换为 double 并返回该值的自然对数。

您可以轻松验证 log(e) 返回 1.0

The log function from dart:math already gives you the natural logarithm:

Converts x to a double and returns the natural logarithm of the value.

And you can easily verify that log(e) returns 1.0.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文