Files
sics/trigd.h
koennecke 3a0b4f293c - Fixed sign problems with om in tasub
- Mended tasdrive to drive energy even if Q is askew
- Fixed QM values
- Fixed problems in mesure: om2th, wrong theta selection
- Fixed core dump when driving h,kl, failed
2005-06-09 12:04:38 +00:00

19 lines
443 B
C

/**
* This is a library of trigonmetric functions acting upon proper
* angles and not radians. Lifted from the Risoe tascom code
*
* March 2005
*/
#ifndef SICSTRIGD
#define SICSTRIGD
double Sign(double d);
double Sind (double x);
double Tand(double x);
double Cosd (double x);
double Atand (double x);
double Atand2 (double x);
double Acosd (double x);
double Asind (double x);
double Atan2d(double x, double y);
#endif