Show
Ignore:
Timestamp:
03/27/12 11:55:36 (12 years ago)
Author:
smidl
Message:

festerexp

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • applications/pmsm/simulator_zdenek/ekf_example/test_exp.c

    r1440 r1442  
    1 #include "fast_exp.h" 
     1#include "fastexp.h" 
    22#include <stdio.h> 
    33int main(){ 
    44        double d; 
    55        for (d=-1; d<1; d+=0.01) 
    6                 printf("exp: %f, fast_exp: %f\n", exp(d), EXP(d) ); 
     6                printf("exp: %f, fast_exp: %f\n", exp(d), fasterexp(d) ); 
    77        return 0; 
    88}