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

    %% Graph of the Inverse Sine Function
% Graph the inverse sine over the domain $-1 \le x \le 1$.
%%

% Copyright 2015 The MathWorks, Inc.

x = -1:.01:1; 
plot(x,asin(x))
grid on