Is there a euler constant function?
Calc: arbitrary precision C-like arithmetic & calculator
Brought to you by:
lcn2
Is there a euler constant (e = 2.718...) function? I've found both euler() and freeeuler() builtin functions, but they both seem to be completely unrelated. There is a pi() function that returns the pi constant, it seems unlikely that there would not be a builtin for e.
So is there one? How do I use it?
Hi wk2,
you can use exp(i, eps), which calculates e^i.
Simply call the function with parameter i = 1, that will give you the e^1, and eps for precision (e.g.: 1e-100, for one hundred numerical digits after the decimal point).
Regards