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

    %% Plot Inverse Secant Function
% Plot the inverse secant function on the interval from -10 to 10.
syms x
fplot(asec(x), [-10, 10])
grid on