l

Dependencies:   mbed Asser2

math_precalc.h

Committer:
GuillaumeCH
Date:
2019-05-08
Revision:
2:3066e614372f
Parent:
0:38dbe2988e77
Child:
4:eac6746544fb

File content as of revision 2:3066e614372f:

#ifndef MATH_PRECALC_H
#define MATH_PRECALC_H


#define PI 3.1416

float cos_precalc(int angle);
float sin_precalc(int angle);

double racine(long int a);
double pow(long int a, long int b);
double abs(double a, double b);

double diff_angle(double angle1, double angle2);


double borne_angle_d(double angle);
double borne_angle_r(double angle);
int signe(float entier);
float min(float f1, float f2);

#endif