Museum

Home

Lab Overview

Retrotechnology Articles

⇒ Online Manual

Media Vault

Software Library

Restoration Projects

Artifacts Sought

TRIG(3M)

NAME

sin, cos, tan, asin, acos, atan, atan2 − trigonometric functions

SYNOPSIS

#include <math.h>

double sin (x)
double x;

double cos (x)
double x;

double asin (x)
double x;

double acos (x)
double x;

double atan (x)
double x;

double atan2 (y, x)
double x, y;

DESCRIPTION

Sin, cos and tan return trigonometric functions of radian arguments.  The magnitude of the argument should be checked by the caller to make sure the result is meaningful. 

Asin returns the arc sin in the range −π/2 to π/2. 

Acos returns the arc cosine in the range 0 to π. 

Atan returns the arc tangent of x in the range −π/2 to π/2. 

Atan2 returns the arc tangent of y/x in the range −π to π. 

DIAGNOSTICS

Arguments of magnitude greater than 1 cause asin and acos to return value 0. 

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026