Project

General

Profile

Statistics
| Revision:

root / branches / simulator / projects / simulator / simulator / core / gauss.h @ 1002

History | View | Annotate | Download (338 Bytes)

1
/**
2
 * @file gauss.h
3
 * @author Colony Project
4
 *
5
 * @brief Generates noise.
6
 *
7
 * Uses a Gaussian curve to approximate noise
8
 * for robots in the simulator.
9
 **/
10

    
11
#ifndef __GAUSS_H__
12
#define __GAUSS_H__
13

    
14
extern double chaos_scalar; 
15
void gauss_init(double chaos, unsigned int seed);
16
double gauss_noise(void);
17

    
18

    
19
#endif