如何在 Eiffel 中获得反三角函数?
How to get inverse trigonometric functions in Eiffel?
如何在 Eiffel 中使用反三角函数,例如 sin 反函数、cos 反函数和 tan 反函数?
我尝试了 atan
、arctan
和 arctangent
,但其中 none 有效。我也无法在任何其他来源中找到它。
谢谢。
根据https://archive.eiffel.com/doc/online/eiffel50/intro/studio/index-09A/base/support/double_math.html
使用 double_math
class 名称是 arc_sine
、arc_cosine
、arc_tangent
。没有像 atan2
.
这样的参数函数
如何在 Eiffel 中使用反三角函数,例如 sin 反函数、cos 反函数和 tan 反函数?
我尝试了 atan
、arctan
和 arctangent
,但其中 none 有效。我也无法在任何其他来源中找到它。
谢谢。
根据https://archive.eiffel.com/doc/online/eiffel50/intro/studio/index-09A/base/support/double_math.html
使用 double_math
class 名称是 arc_sine
、arc_cosine
、arc_tangent
。没有像 atan2
.