summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/elementaryFunctions/Trigonometry/coth/scoths.c
blob: 107945e549d74ca288cc5af5a5149ab3aaa401bb (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"

float	       scoths(float in) {
  return (cosh(in)/sinh(in));
}