[TOC]

atan

Inverse tangent in radians

Usage

atan(A)

Example

Input
x = linspace(-1000,1000);
y = atan(x);
plot(x,y,'.-');
xlabel('x')
ylabel('atan(x)')
Output

atan_image