acotdInverse cotangent in degrees
acotd(A)A should be an array, which can be real or complex.A.A, it returns values in the interval [-90, 90].A.x = linspace(-10,-0.01);
y = acotd(x);
plot(x,y,'-');
hold
x = linspace(0.01,10);
y = acotd(x);
plot(x,y,'-');
xlabel('x')
ylabel('acotd(x)')
