gistlib
You can write 10^-5 as 1e-5 in Matlab.
main.mnum = 1e-5; 12 chars2 lines
num = 1e-5;
This represents 10 to the power of -5 which is 0.00001.
gistlibby LogSnag