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

    %% Plot Inverse Cotangent Function
% Plot the inverse cotangent function on the interval from -10 to 10.
syms x
fplot(acot(x), [-10, 10])
grid on