Math In Function

  • Thread starter Thread starter James Jenkins
  • Start date Start date
J

James Jenkins

Hi,
I am looking for the 'In' Function in C# to work out an equation - I
have an 'In' option on my calculator and I am struggling to find out what it
is and what it does? - Can anyone point me into the right direction -

TIA.
James
http://www.software-dungeon.co.uk
 
James Jenkins said:
Hi,
I am looking for the 'In' Function in C# to work out an equation - I
have an 'In' option on my calculator and I am struggling to find out what
it is and what it does? - Can anyone point me into the right direction -

I suspect you are talking about "ln", not "In", which is log-to-the-base-e,
also called "natural logarithm", hence the n and the l, although not in that
order. I think that Math.Log should be equivalent, while Math.Log10 will
correspond to your calculator's "log" button.
 
Back
Top