summaryrefslogtreecommitdiff
path: root/src/c/elementaryFunctions/Trigonometry/coth/dcoths.c
blob: bf6bb78d9db983c15e0f9561a3f3445b45352ee3 (plain)
1
2
3
4
5
6
7
8
9
10
#include <math.h>
#include "coth.h"
#include "cosh.h"
#include "cos.h"
#include "sinh.h"
#include "sin.h"

double	       dcoths(double in) {
  return (cosh(in)/sinh(in));
}