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 Hobbyking_Cheetah FastPWM3
math_ops.h
- Committer:
- benkatz
- Date:
- 2017-03-02
- Revision:
- 20:bf9ea5125d52
- Child:
- 26:2b865c00d7e9
File content as of revision 20:bf9ea5125d52:
#ifndef MATH_OPS_H #define MATH_OPS_H #define PI 3.14159265359f #include "math.h" float fmaxf(float x, float y); float fminf(float x, float y); float fmaxf3(float x, float y, float z); float fminf3(float x, float y, float z); void limit_norm(float *x, float *y, float limit); #endif