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

    %% Plot Inverse Hyperbolic Sine Function
% Plot the inverse hyperbolic sine function on the interval from -10 to 10.
syms x
fplot(asinh(x), [-10, 10])
grid on