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

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