Package edu.jas.structure
Interface AlgebraElem<A extends AlgebraElem<A,C>,C extends RingElem<C>>
-
- Type Parameters:
A
- algebra typeC
- scalar type
- All Superinterfaces:
AbelianGroupElem<A>
,java.lang.Comparable<A>
,Element<A>
,MonoidElem<A>
,RingElem<A>
,java.io.Serializable
- All Known Implementing Classes:
GenMatrix
public interface AlgebraElem<A extends AlgebraElem<A,C>,C extends RingElem<C>> extends RingElem<A>
Algabra element interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description A
linearCombination(A b, C s)
Linear combination.A
linearCombination(C a, A b, C s)
Linear combination.A
scalarMultiply(C s)
Scalar multiplication.-
Methods inherited from interface edu.jas.structure.AbelianGroupElem
abs, isZERO, negate, signum, subtract, sum
-
Methods inherited from interface edu.jas.structure.Element
compareTo, copy, equals, factory, hashCode, toScript, toScriptFactory
-
Methods inherited from interface edu.jas.structure.MonoidElem
divide, inverse, isONE, isUnit, leftDivide, leftRemainder, multiply, power, quotientRemainder, remainder, rightDivide, rightRemainder, twosidedDivide, twosidedRemainder
-
-