summaryrefslogtreecommitdiff
path: root/2.3-1/src/c/elementaryFunctions/Trigonometry/sech/dsechs.c
blob: 10ca392af7c03581660925d4f9c14b11931af86f (plain)
1
2
3
4
5
6
7
8
9
10
#include <math.h>
#include "sech.h"
#include "cosh.h"
#include "cos.h"


double dsechs(double in)
{
  return (1/cosh(in));
}