robot

Dependencies:   FastPWM3 mbed

MathHelpers/MathHelpers.h

Committer:
bwang
Date:
2016-12-03
Revision:
39:80b38a8e1787
Parent:
38:07cb4ae6c1bd
Child:
64:b4175385d718

File content as of revision 39:80b38a8e1787:

#ifndef __MATH_HELPERS_H
#define __MATH_HELPERS_H

float constrain(float in, float min, float max);
float map(float x, float in_min, float in_max, float out_min, float out_max);
float fminf(float, float);
float fmaxf(float, float);

float acbrt(float x);
float aatan2(float q, float d);

#define M_PI 3.14159f

#endif