acotInverse cotangent in radians
acot(A)A should be an array, which can be real or complex.A.A, it returns values in the interval [-pi/2, pi/2].A.x = linspace(-10,-0.01);
y = acot(x);
plot(x,y,'-');
hold
x = linspace(0.01,10);
y = acot(x);
plot(x,y,'-');
xlabel('x')
ylabel('acot(x)')
