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

    %% Plot Inverse Tangent Function
% Plot the inverse tangent function on the interval from -10 to 10.
syms x
fplot(atan(x), [-10, 10])
grid on