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

    %% Plot Inverse Cosine Function
% Plot the inverse cosine function on the interval from -1 to 1. 
syms x
fplot(acos(x), [-1, 1])
grid on