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

    %% Plot Inverse Hyperbolic Cosine Function
% Plot the inverse hyperbolic cosine function on the interval from 1 to 10.
syms x
fplot(acosh(x), [1, 10])
grid on