FileDocCategorySizeDatePackage
Logarithm.javaAPI DocExample369Sun Feb 08 21:33:58 GMT 2004None

Logarithm

public class Logarithm extends Object
Show the logarithm to base e of a number
author
Ian F. Darwin, http://www.darwinsys.com/
version
$Id: Logarithm.java,v 1.3 2004/02/09 03:33:57 ian Exp $

Fields Summary
Constructors Summary
Methods Summary
public static voidmain(java.lang.String[] argv)

		//+
		double someValue;
		// compute someValue...
		//-
		someValue = 0;
		//+
		double log_e = Math.log(someValue);
		//-