|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use HashLinearComb | |
---|---|
sbrt.kernel.math | Provides classes and interfaces for creating objects relevant to mathematics. |
Uses of HashLinearComb in sbrt.kernel.math |
---|
Methods in sbrt.kernel.math that return HashLinearComb | ||
---|---|---|
HashLinearComb<V> |
HashLinearComb.add(double constant)
Adds, in the mathematical sense, the provided constant to this linear combination. |
|
HashLinearComb<V> |
HashLinearComb.add(LinearComb<? extends V> expression)
Adds, in the mathematical sense, the provided linear combination to this linear combination. |
|
HashLinearComb<V> |
HashLinearComb.multiply(double constant)
Multiplies this linear combination by the provided constant. |
|
HashLinearComb<V> |
HashLinearComb.plugIn(java.util.Map<?,? extends LinearComb<? extends V>> variableValues)
Plugs in the provided linear combinations to produce a new linear combination. |
|
HashLinearComb<V> |
HashLinearComb.plugIn(java.util.Map<?,java.lang.Double> numbers,
java.util.Map<?,? extends LinearComb<? extends V>> linearCombs)
Plugs in the provided numerical values and linear combinations to produce a new linear combination. |
|
HashLinearComb<V> |
HashLinearComb.plugIn(java.lang.Object variable,
double value)
Plugs the provided numerical value into the provided variable to produce a new linear combination. |
|
HashLinearComb<V> |
HashLinearComb.plugIn(java.lang.Object variable,
LinearComb<? extends V> expr)
Plugs the provided linear combination into the provided variable to produce a new linear combination. |
|
HashLinearComb<V> |
HashLinearComb.plugInNumbers(java.util.Map<?,java.lang.Double> variableValues)
Plugs in the provided numerical values to produce a new linear combination. |
|
static
|
HashLinearComb.singleTerm(double coefficient,
V variable)
Returns a single-term linear combination with the provided variable and coefficient. |
|
static
|
HashLinearComb.singleTerm(LinearComb.Term<V> term)
Returns a single-term linear combination with the provided term. |
|
static
|
HashLinearComb.singleTerm(V variable)
Returns a single-term linear combination with the provided variable. |
|
static
|
HashLinearComb.singleTerm(V variable,
double coefficient)
Returns a single-term linear combination with the provided variable and coefficient. |
|
static
|
HashLinearComb.singleTerm(V variable,
double coefficient,
double zeroCutoff)
Returns a single-term linear combination with the provided variable, coefficient, and zero cutoff. |
|
HashLinearComb<V> |
HashLinearComb.solveFor(java.lang.Object variable,
double rightHandSide)
Equates this linear combination to the provided constant and solves for the provided variable. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |