2017-03-05 10:42:27 +00:00
|
|
|
package com.bytezone.diskbrowser.visicalc;
|
|
|
|
|
2020-02-10 11:05:40 +00:00
|
|
|
// -----------------------------------------------------------------------------------//
|
|
|
|
class Sqrt extends ValueFunction
|
|
|
|
// -----------------------------------------------------------------------------------//
|
2017-03-05 10:42:27 +00:00
|
|
|
{
|
2020-02-10 11:05:40 +00:00
|
|
|
// ---------------------------------------------------------------------------------//
|
2017-03-18 08:33:40 +00:00
|
|
|
Sqrt (Cell cell, String text)
|
2020-02-10 11:05:40 +00:00
|
|
|
// ---------------------------------------------------------------------------------//
|
2017-03-05 10:42:27 +00:00
|
|
|
{
|
2017-03-18 08:33:40 +00:00
|
|
|
super (cell, text);
|
2017-03-18 09:21:11 +00:00
|
|
|
assert text.startsWith ("@SQRT(") : text;
|
2017-03-05 10:42:27 +00:00
|
|
|
}
|
|
|
|
|
2020-02-10 11:05:40 +00:00
|
|
|
// ---------------------------------------------------------------------------------//
|
2017-03-05 10:42:27 +00:00
|
|
|
@Override
|
2017-03-20 01:45:14 +00:00
|
|
|
public double calculateValue ()
|
2020-02-10 11:05:40 +00:00
|
|
|
// ---------------------------------------------------------------------------------//
|
2017-03-05 10:42:27 +00:00
|
|
|
{
|
2017-03-23 13:30:41 +00:00
|
|
|
return Math.sqrt (source.getDouble ());
|
2017-03-05 10:42:27 +00:00
|
|
|
}
|
|
|
|
}
|