Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependencies: mbed X_NUCLEO_IHM02A1
math_precalc.h
- Committer:
- GuillaumeCH
- Date:
- 2019-04-17
- Revision:
- 2:5764f89a27f6
- Parent:
- 1:0690cf83f060
File content as of revision 2:5764f89a27f6:
#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