2 %> Algorithm 7.1: calculation of the machine epsilon. Implementation of algorithm 7.2 of \cite Bier15-book
     4 %> @author <a href=
"http://people.epfl.ch/michel.bierlaire">Michel Bierlaire</a>
     5 %> @date Fri Mar 20 10:27:04 2015
     9 %> @note Tested with \ref runMachineEpsilon.m
    11 %> Calculate the machine epsilon in single and 
double precision
    12 %> @
return epss: single precision
    13 %> @
return epsd: 
double precision
    16   while (epss + 1.0 != 1.0)
    21   while (epsd + 1.0 != 1.0)
 function machineEpsilon()
Calculate the machine epsilon in single and double precision.