[TOC]

acotd

Inverse cotangent in degrees

Usage

acotd(A)

Example

Input
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)')
Output

acotd_image