Uses of Interface
com.rubecula.jquantity.Divisible

Packages that use Divisible
com.rubecula.jquantity

JQuantity Contents: Copyright Notice Overview JQuantity Philosophy Programming Conventions Package Structure
Class Structure Links Important Note about the links to classes in this document:  This document appears in two different places: the source tree and the doc tree (where it is placed by the javadoc program). 

 

Uses of Divisible in com.rubecula.jquantity
 

Classes in com.rubecula.jquantity that implement Divisible
 class Approximation
           This Class approximates a value using an immutable double-precision value.
 class Complex
           Representation of a Complex Number Objects of this class represent complex numbers defined on one side or the other of the EL (exponential-log) plane.
 class Compound
          Class
 class DivisibleMutable
          Interface to define Mutating Divisible arithmetical operations.
 class JQuantity
          This class represents a quantity, that is to say a value and its units.
 class OneMatrix
          Class to model a fixed-size one-dimensional matrix (normally called a Vector) but given the name OneMatrix to avoid confusion with Vector.
 class Rational
          Public class to represent precise rational numbers.
 class Row
          Class
 class SparseMatrix
          Class
 class TwoMatrix
          Class to represent a fixed size two-dimensional matrix.
 class Value
          This class represents a Rational which may be factored in some way.
 

Methods in com.rubecula.jquantity that return Divisible
 Divisible TwoMatrix.inverse()
           
 Divisible TwoMatrix.quotient(BaseNumber divisor)
           
 Divisible TwoMatrix.factored(double factor)
           
 Divisible SparseMatrix.inverse()
           
 Divisible SparseMatrix.quotient(BaseNumber divisor)
           
 Divisible SparseMatrix.factored(double factor)
           
 Divisible Rational.inverse()
          Method to yield the reciprocal of this and return it as the result.
 Divisible Rational.quotient(BaseNumber divisor)
          Method to divide this by multiplicand and return the quotient as the result.
 Divisible Rational.factored(double factor)
          Method to yield the quotient of this divided by factor, and return it as the result.
 Divisible OneMatrix.inverse()
           
 Divisible OneMatrix.quotient(BaseNumber divisor)
           
 Divisible OneMatrix.factored(double factor)
           
 Divisible JQuantity.inverse()
          Method to yield the reciprocal of this and return it as the result.
 Divisible JQuantity.quotient(BaseNumber divisor)
          Method to divide this by multiplicand and return the quotient as the result.
 Divisible JQuantity.factored(double factor)
           
 Divisible Divisible.inverse()
          Method to yield the reciprocal of this and return it as the result.
 Divisible Divisible.quotient(BaseNumber divisor)
          Method to divide this by divisor and return the quotient as the result.
 Divisible Divisible.factored(double factor)
          Method to yield the quotient of this divided by factor, and return it as the result.
 Divisible Complex.inverse()
          Method to yield the reciprocal of this and return it as the result.
 Divisible Complex.quotient(BaseNumber divisor)
          Method to divide this by divisor and return the quotient as the result.
 Divisible Complex.factored(double factor)
          Method to yield the quotient of this divided by factor, and return it as the result.
 Divisible Approximation.inverse()
          Method to yield the reciprocal of this and return it as the result.
 Divisible Approximation.quotient(BaseNumber divisor)
          Method to yield the quotient of this approximation divided by a BaseNumber.
 Divisible Approximation.factored(double factor)
          Method to yield the quotient of this divided by factor, and return it as the result.