| 1 |
|
|---|
| 2 | /* @(#)s_atan.c 5.1 93/09/24 */
|
|---|
| 3 | /*
|
|---|
| 4 | * ====================================================
|
|---|
| 5 | * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved.
|
|---|
| 6 | *
|
|---|
| 7 | * Developed at SunPro, a Sun Microsystems, Inc. business.
|
|---|
| 8 | * Permission to use, copy, modify, and distribute this
|
|---|
| 9 | * software is freely granted, provided that this notice
|
|---|
| 10 | * is preserved.
|
|---|
| 11 | * ====================================================
|
|---|
| 12 | *
|
|---|
| 13 | */
|
|---|
| 14 |
|
|---|
| 15 | /*
|
|---|
| 16 | FUNCTION
|
|---|
| 17 | <<atan>>, <<atanf>>---arc tangent
|
|---|
| 18 |
|
|---|
| 19 | INDEX
|
|---|
| 20 | atan
|
|---|
| 21 | INDEX
|
|---|
| 22 | atanf
|
|---|
| 23 |
|
|---|
| 24 | ANSI_SYNOPSIS
|
|---|
| 25 | #include <math.h>
|
|---|
| 26 | double atan(double <[x]>);
|
|---|
| 27 | float atanf(float <[x]>);
|
|---|
| 28 |
|
|---|
| 29 | TRAD_SYNOPSIS
|
|---|
| 30 | #include <math.h>
|
|---|
| 31 | double atan(<[x]>);
|
|---|
| 32 | double <[x]>;
|
|---|
| 33 |
|
|---|
| 34 | float atanf(<[x]>);
|
|---|
| 35 | float <[x]>;
|
|---|
| 36 |
|
|---|
| 37 | DESCRIPTION
|
|---|
| 38 |
|
|---|
| 39 | <<atan>> computes the inverse tangent (arc tangent) of the input value.
|
|---|
|
|---|