www.gusucode.com > symbolic 源码程序 matlab案例代码 > symbolic/AtanhPlotTheInverseHyperbolicTangentFunctionExample.m

    %% Plot Inverse Hyperbolic Tangent Function
% Plot the inverse hyperbolic tangent function on the interval from -1 to 1.
syms x
fplot(atanh(x), [-1, 1])
grid on