|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use FuzzyIntervalValue | |
---|---|
org.knime.base.node.mine.sota.logic | Contains the logic classes of SOTA. |
org.knime.core.data.def | Provides default implementations for all (except
DataTable ) abstract
classes in the data package.The default implementations of classes derived from DataCell just store their
values in members of the appropriate java type (like
DoubleCell has a private
member of Java type double, etc.).The default implementation of DataTable
is deprecated and shouldn't be used. |
Uses of FuzzyIntervalValue in org.knime.base.node.mine.sota.logic |
---|
Classes in org.knime.base.node.mine.sota.logic that implement FuzzyIntervalValue | |
---|---|
class |
SotaFuzzyCell
|
Methods in org.knime.base.node.mine.sota.logic with parameters of type FuzzyIntervalValue | |
---|---|
SotaTreeCell |
SotaTreeCellFactory.createCell(FuzzyIntervalValue[] data,
int level)
Creates new insatnce of Cell with given FuzzyIntervalValue data and level and returns it. |
static double |
SotaFuzzyMath.getCenterOfCoreRegion(FuzzyIntervalValue val)
Computes the center of the FuzzyCells core region, by adding MaxCore and MinCore and dividing the result by 2. |
static double |
SotaFuzzyMath.getMaxCoreDilatation(FuzzyIntervalValue[] vals)
Approximates dilatation of Core region, by using Pythagoras. |
static double |
SotaFuzzyMath.getMaxCoreDistanceToCenter(FuzzyIntervalValue val)
Computes the maximal distance between the center of the core region and the end of the core region, by deviding difference of MaxCore and MinCore by 2, and returns it. |
Uses of FuzzyIntervalValue in org.knime.core.data.def |
---|
Classes in org.knime.core.data.def that implement FuzzyIntervalValue | |
---|---|
class |
DoubleCell
A data cell implementation holding a double value by storing this value in a private double member. |
class |
FuzzyIntervalCell
A data cell implementation holding a fuzzy interval as value by storing this value in four private double members, two for the min/max
values of the support, and two for the min/max values of the core of the
fuzzy interval. |
class |
FuzzyNumberCell
A data cell implementation holding a Fuzzy number by storing this value in three private double members, that is one for the core and two
for the min/max of the support. |
class |
IntCell
A data cell implementation holding an integer value by storing this value in a private int member. |
class |
IntervalCell
A DataCell implementation holding a numeric interval as value
by storing left and right bound. |
class |
LongCell
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |