Slurp

Dependencies:   FastPWM3 mbed

math_ops/math_ops.h

Committer:
austinbrown124
Date:
2017-05-20
Revision:
0:9edd6ec0f56a

File content as of revision 0:9edd6ec0f56a:

#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