1function MAP=map_exponential(MEAN)
2% MAP=map_exponential(MEAN) - Fit a Poisson process as a MAP
5% MEAN: mean inter-arrival time of the process
8% MAP: a MAP in the form of {D0,D1}
11% - MAP=map_exponential(2) return a Poisson process with rate lambda=0.5
15 MAP=map_exponential(map_mean(MEAN));