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

    %% Plot Inverse Hyperbolic Secant Function
% Plot the inverse hyperbolic secant function on the interval from 0 to 1.
syms x
fplot(asech(x), [0, 1])
grid on