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

    %% Plot Inverse Sine Function
% Plot the inverse sine function on the interval from -1 to 1. 
syms x
fplot(asin(x), [-1, 1])
grid on