Package jscl.math
Interface Arithmetic
-
- All Known Implementing Classes:
Complex,Expression,Function,Generic,JSCLBoolean,JSCLBoolean,JSCLDouble,JSCLInteger,JSCLVector,Matrix,ModularInteger,ModularInteger,Numeric,NumericMatrix,NumericVector,NumericWrapper,Polynomial,Rational,UnivariatePolynomial
public interface Arithmetic
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Arithmeticadd(Arithmetic arithmetic)Arithmeticdivide(Arithmetic arithmetic)Arithmeticmultiply(Arithmetic arithmetic)Arithmeticsubtract(Arithmetic arithmetic)
-
-
-
Method Detail
-
add
Arithmetic add(Arithmetic arithmetic)
-
subtract
Arithmetic subtract(Arithmetic arithmetic)
-
multiply
Arithmetic multiply(Arithmetic arithmetic)
-
divide
Arithmetic divide(Arithmetic arithmetic) throws java.lang.ArithmeticException
- Throws:
java.lang.ArithmeticException
-
-