Prius IPM controller

Dependencies:   mbed

Fork of analoghalls5_5 by N K

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers fastmath.h Source File

fastmath.h

00001 #ifndef __FASTMATH_H
00002 #define __FASTMATH_H
00003 
00004 #include "includes.h"
00005 #include "lut.h"
00006 
00007 namespace FastMath {
00008     float FastSin(float theta);
00009     float FastCos(float theta);
00010     float FastSin01(float theta);
00011     float FastCos01(float theta);
00012 };
00013 
00014 #endif