public class StretchBestFitResponse
extends java.lang.Object
Modifier and Type | Method and Description |
---|---|
static StretchBestFitResponse |
Create(double[] adblPredictorOrdinate,
double[] adblResponseValue)
Construct the StretchBestFitResponse Instance from the given Predictor Ordinate/Response Pairs, using
Uniform Weightings.
|
static StretchBestFitResponse |
Create(double[] adblPredictorOrdinate,
double[] adblResponseValue,
double[] adblWeight)
Construct the StretchBestFitResponse Instance from the given Inputs
|
static StretchBestFitResponse |
Create(int[] aiPredictorOrdinate,
double[] adblResponseValue,
double[] adblWeight)
Construct the StretchBestFitResponse Instance from the given Inputs
|
int |
numPoint()
Retrieve the Number of Fitness Points
|
double[] |
predictorOrdinate()
Retrieve the Array of Predictor Ordinates
|
double |
predictorOrdinate(int iIndex)
Retrieve the Indexed Predictor Ordinate Element
|
double[] |
response()
Retrieve the Array of Responses
|
double |
response(int iIndex)
Retrieve the Indexed Response Element
|
SegmentBestFitResponse |
sizeToSegment(LatentStateInelastic ics)
Generate the Segment Local Best Fit Weighted Response contained within the specified Segment
|
double[] |
weight()
Retrieve the Array of the Fitness Weights
|
double |
weight(int iIndex)
Retrieve the Indexed Fitness Weight Element
|
public static final StretchBestFitResponse Create(double[] adblPredictorOrdinate, double[] adblResponseValue, double[] adblWeight)
adblPredictorOrdinate
- Array of Predictor OrdinatesadblResponseValue
- Array of Response ValuesadblWeight
- Array of Weightspublic static final StretchBestFitResponse Create(int[] aiPredictorOrdinate, double[] adblResponseValue, double[] adblWeight)
aiPredictorOrdinate
- Array of Predictor OrdinatesadblResponseValue
- Array of Response ValuesadblWeight
- Array of Weightspublic static final StretchBestFitResponse Create(double[] adblPredictorOrdinate, double[] adblResponseValue)
adblPredictorOrdinate
- Array of Predictor OrdinatesadblResponseValue
- Array of Response Valuespublic double[] weight()
public double weight(int iIndex) throws java.lang.Exception
iIndex
- The Element Indexjava.lang.Exception
- Thrown if the Index is Invalidpublic double[] predictorOrdinate()
public double predictorOrdinate(int iIndex) throws java.lang.Exception
iIndex
- The Element Indexjava.lang.Exception
- Thrown if the Index is Invalidpublic double[] response()
public double response(int iIndex) throws java.lang.Exception
iIndex
- The Element Indexjava.lang.Exception
- Thrown if the Index is Invalidpublic int numPoint()
public SegmentBestFitResponse sizeToSegment(LatentStateInelastic ics)
ics
- The Inelastics Instance to be used for the Localization