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

    %% Graph of Inverse Hyperbolic Secant Function
% Graph the inverse hyperbolic secant over the domain $0.01 \le x \le 1$.

%%
x = 0.01:0.001:1;
plot(x,asech(x))
grid on
xlabel('x')
ylabel('y')