我在Matlab上使用arctanh函数时始终收到错误

类型为'double'的输入参数的未定义函数arctanh

我正在做这个计算

A = mu*arctanh(l2./(R2+R3))


其中l2R2是向量。

最佳答案

arctanh仅在MuPAD笔记本界面中:

http://www.mathworks.com/help/symbolic/mupad_ref/arctanh.html

通常在MATLAB中,您应该使用atanh

http://www.mathworks.com/help/matlab/ref/atanh.html

关于matlab - Matlab Arctanh函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24924236/

10-12 16:35