mev-4.0.01/source/org/tigr/util/Xcon.java

Code
Comments
Other
Rev Date Author Line
2 26 Feb 07 jari 1 /*
2 26 Feb 07 jari 2 Copyright @ 1999-2003, The Institute for Genomic Research (TIGR).
2 26 Feb 07 jari 3 All rights reserved.
2 26 Feb 07 jari 4 */
2 26 Feb 07 jari 5 /*
2 26 Feb 07 jari 6  * $RCSfile: Xcon.java,v $
2 26 Feb 07 jari 7  * $Revision: 1.1.1.1 $
2 26 Feb 07 jari 8  * $Date: 2003/08/21 21:04:23 $
2 26 Feb 07 jari 9  * $Author: braisted $
2 26 Feb 07 jari 10  * $State: Exp $
2 26 Feb 07 jari 11  */
2 26 Feb 07 jari 12
2 26 Feb 07 jari 13 package org.tigr.util;
2 26 Feb 07 jari 14
2 26 Feb 07 jari 15 public class Xcon {
2 26 Feb 07 jari 16     public static double log2(double x) {return Math.log(x) / Math.log(2);}
2 26 Feb 07 jari 17     public static double log10(double x) {return Math.log(x) / Math.log(10);}
2 26 Feb 07 jari 18 }