I've come across some code, for instance, from the question, Passing a function and its derivative to a module
Mean[l[NestList[f[#, μ] &, 0.1, 1*^2]]]
What does the 1*^2 mean?
I've come across some code, for instance, from the question, Passing a function and its derivative to a module
Mean[l[NestList[f[#, μ] &, 0.1, 1*^2]]]
What does the 1*^2 mean?
a*^bis interpreted as $a\times 10^b$, i.e "scientific notation". – MarcoB Feb 10 '17 at 06:50