root/applications/pmsm/simulator_zdenek/ekf_example/test_exp.c @ 1442

Revision 1442, 161 bytes (checked in by smidl, 12 years ago)

festerexp

Line 
1#include "fastexp.h"
2#include <stdio.h>
3int main(){
4        double d;
5        for (d=-1; d<1; d+=0.01)
6                printf("exp: %f, fast_exp: %f\n", exp(d), fasterexp(d) );
7        return 0;
8}
Note: See TracBrowser for help on using the browser.