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

    %% Inverse Sine of a Vector of Complex Values  
% Find the inverse sine of the elements of vector |x|. The |asin| function
% acts on |x| element-wise.   

%%  
x = [0.5i 1+3i -2.2+i];
y = asin(x)