代码拉取完成,页面将自动刷新
#include "stdafx.h"
#include "defs.h"
void
eval_arctanh(void)
{
push(cadr(p1));
eval();
arctanh();
}
void
arctanh(void)
{
double d;
save();
p1 = pop();
if (car(p1) == symbol(TANH)) {
push(cadr(p1));
restore();
return;
}
if (isdouble(p1)) {
d = p1->u.d;
if (d < -1.0 || d > 1.0)
stop("arctanh function argument is not in the interval [-1,1]");
d = log((1.0 + d) / (1.0 - d)) / 2.0;
push_double(d);
restore();
return;
}
if (iszero(p1)) {
push(zero);
restore();
return;
}
push_symbol(ARCTANH);
push(p1);
list(2);
restore();
}
#if SELFTEST
static const char *s[] = {
"arctanh(0.0)",
"0",
"arctanh(0)",
"0",
"arctanh(tanh(x))",
"x",
};
void
test_arctanh(void)
{
test(__FILE__, s, sizeof s / sizeof (char *));
}
#endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。