asser1

Dependencies:   mbed asser1

math_precalc.h

Committer:
GuillaumeCH
Date:
2019-05-08
Revision:
4:deef042e9c02
Parent:
2:5764f89a27f6

File content as of revision 4:deef042e9c02:

#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