getScale method

double getScale()

Returns the scale factor used to specify a fixed precision model. The number of decimal places of precision is equal to the base-10 logarithm of the scale factor. Non-integral and negative scale factors are supported. Negative scale factors indicate that the places of precision is to the left of the decimal point.

@return the scale factor for the fixed precision model

Implementation

double getScale() {
  return scale;
}