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

    %% Graph of Inverse Hyperbolic Cosine Function
% Graph the inverse hyperbolic cosine function over the domain $1 \le x
% \le \pi$.

%%
x = 1:pi/40:pi; 
plot(x,acosh(x))
grid on
xlabel('x')
ylabel('y')