Package | Description |
---|---|
gov.sandia.cognition.collection |
Provides commonly useful collection implementations.
|
gov.sandia.cognition.learning.performance.categorization |
Provides performance measures for categorizers.
|
gov.sandia.cognition.math |
Provides classes for mathematical computation.
|
gov.sandia.cognition.math.matrix |
Provides interfaces and classes for linear algebra.
|
gov.sandia.cognition.statistics |
Provides the inheritance hierarchy for general statistical methods and distributions.
|
gov.sandia.cognition.statistics.distribution |
Provides statistical distributions.
|
Modifier and Type | Field and Description |
---|---|
protected MutableDouble |
AbstractMutableDoubleMap.SimpleEntry.value
Value associated with the entry
|
Modifier and Type | Field and Description |
---|---|
protected java.util.Map<KeyType,MutableDouble> |
AbstractMutableDoubleMap.SimpleEntrySet.map
Backing map
|
Modifier and Type | Method and Description |
---|---|
java.util.Map<KeyType,MutableDouble> |
AbstractMutableDoubleMap.asMap() |
Constructor and Description |
---|
SimpleEntry(KeyType key,
MutableDouble value)
Creates a new instance of SimpleEntry
|
Constructor and Description |
---|
AbstractMutableDoubleMap(java.util.Map<KeyType,MutableDouble> map)
Creates a new instance of AbstractMutableDoubleMap
|
SimpleEntrySet(java.util.Map<KeyType,MutableDouble> map)
Creates a new instance of SimpleEntrySet
|
SimpleIterator(java.util.Iterator<? extends java.util.Map.Entry<KeyType,MutableDouble>> delegate)
Default constructor
|
Modifier and Type | Field and Description |
---|---|
protected java.util.Map<CategoryType,java.util.Map<CategoryType,MutableDouble>> |
DefaultConfusionMatrix.confusions
The backing map of confusion matrix entries.
|
Modifier and Type | Method and Description |
---|---|
MutableDouble |
MutableDouble.clone() |
MutableDouble |
MutableDouble.divide(MutableDouble other) |
MutableDouble |
MutableDouble.dotTimes(MutableDouble other) |
MutableDouble |
MutableDouble.inverse() |
MutableDouble |
MutableDouble.minus(MutableDouble other) |
MutableDouble |
MutableDouble.negative() |
MutableDouble |
MutableDouble.plus(MutableDouble other) |
MutableDouble |
MutableDouble.scale(double scaleFactor) |
MutableDouble |
MutableDouble.scaledMinus(double scaleFactor,
MutableDouble other) |
MutableDouble |
MutableDouble.scaledPlus(double scaleFactor,
MutableDouble other) |
MutableDouble |
MutableDouble.times(MutableDouble other) |
Modifier and Type | Method and Description |
---|---|
int |
MutableDouble.compareTo(MutableDouble other) |
MutableDouble |
MutableDouble.divide(MutableDouble other) |
void |
MutableDouble.divideEquals(MutableDouble other) |
MutableDouble |
MutableDouble.dotTimes(MutableDouble other) |
void |
MutableDouble.dotTimesEquals(MutableDouble other) |
boolean |
MutableDouble.equals(MutableDouble other)
Determines if this MutableDouble is equal to another MutableDouble.
|
boolean |
MutableDouble.equals(MutableDouble other,
double effectiveZero) |
MutableDouble |
MutableDouble.minus(MutableDouble other) |
void |
MutableDouble.minusEquals(MutableDouble other) |
MutableDouble |
MutableDouble.plus(MutableDouble other) |
void |
MutableDouble.plusEquals(MutableDouble other) |
MutableDouble |
MutableDouble.scaledMinus(double scaleFactor,
MutableDouble other) |
void |
MutableDouble.scaledMinusEquals(double scaleFactor,
MutableDouble other) |
MutableDouble |
MutableDouble.scaledPlus(double scaleFactor,
MutableDouble other) |
void |
MutableDouble.scaledPlusEquals(double scaleFactor,
MutableDouble other) |
MutableDouble |
MutableDouble.times(MutableDouble other) |
void |
MutableDouble.timesEquals(MutableDouble other) |
Constructor and Description |
---|
MutableDouble(MutableDouble other)
Creates a copy of a
MutableDouble . |
Constructor and Description |
---|
DefaultInfiniteVector(java.util.LinkedHashMap<KeyType,MutableDouble> map)
Creates a new
AbstractMapInfiniteVector with the given backing
map. |
Constructor and Description |
---|
AbstractDataDistribution(java.util.Map<KeyType,MutableDouble> map)
Creates a new
AbstractDataDistribution . |
Constructor and Description |
---|
DefaultDataDistribution(java.util.Map<KeyType,MutableDouble> map,
double total)
Creates a new instance of
|
ScalarDataDistribution(java.util.Map<java.lang.Double,MutableDouble> map,
double total)
Creates a new instance of ScalarDataDistribution
|