dmolony-DiskBrowser/src/com/bytezone/diskbrowser/visicalc/Ln.java
2017-03-24 00:30:41 +11:00

16 lines
289 B
Java

package com.bytezone.diskbrowser.visicalc;
public class Ln extends ValueFunction
{
Ln (Cell cell, String text)
{
super (cell, text);
assert text.startsWith ("@LN(") : text;
}
@Override
public double calculateValue ()
{
return Math.log (source.getDouble ());
}
}