amath  1.8.5
Simple command line calculator
acsc.c File Reference

Inverse cosecant function. More...

#include "prim.h"
Include dependency graph for acsc.c:

Go to the source code of this file.

Functions

double acsc (double x)
 Inverse cosecant function. More...
 

Detailed Description

Inverse cosecant function.

Definition in file acsc.c.

Function Documentation

◆ acsc()

double acsc ( double  x)

Inverse cosecant function.

Method
    arccsc(x) = arcsin(1/x)

Definition at line 45 of file acsc.c.

References asin().

Referenced by RealNumber::ArcCosecant().

46 {
47  double a = 1.0 / x;
48  double b = asin(a);
49  return b;
50 }
double asin(double x)
Inverse sine function.
Definition: asin.c:100
Here is the call graph for this function:
Here is the caller graph for this function: