Пример #1
0
 /**
  * Returns the single value of this quantity corresponding to a numeric amount, a unit, and an
  * error estimate.
  *
  * @param amount The numeric value.
  * @param unit The unit of the numeric value. May be <code>null</code>.
  * @param error The error estimate. May be <code>null</code>.
  * @return The single value of this quantity corresponding to the input.
  * @throws VisADException VisAD failure.
  */
 public static Real NewReal(double amount, Unit unit, ErrorEstimate error) throws VisADException {
   return instance.newReal(amount, unit, error);
 }