|
|||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DoubleArray | |
---|---|
com.quinncurtis.chart2djava | |
com.quinncurtis.spcchartjava |
Uses of DoubleArray in com.quinncurtis.chart2djava |
---|
Subclasses of DoubleArray in com.quinncurtis.chart2djava | |
---|---|
class |
TimeArray
The TimeArray is an improved version of the standard Array type because it allows automatic and dynamic resizing of the array. |
Fields in com.quinncurtis.chart2djava declared as DoubleArray | |
---|---|
DoubleArray |
GroupPoint2D.ygroup
The y-coordinate of this GroupPoint2D . |
Methods in com.quinncurtis.chart2djava that return DoubleArray | |
---|---|
DoubleArray[] |
DoubleArray2D.DataBuffer()
This method returns a reference to the internal dataBuffer. |
DoubleArray |
GroupDataset.getGroupDatasetColumnSum()
This method returns an array of double, that contains the sum of the group values for each index, 0 to numberDatapoints-1. |
DoubleArray |
DoubleArray2D.getRowObject(int row)
Returns a reference to the DoubleArray object that holds the data for the given row. |
DoubleArray |
ChartDataset.getXDataObj()
This method returns a reference to the internal DoubleArray object used to store the x-data values. |
DoubleArray |
SimpleDataset.getYDataObj()
This method returns a reference to the internal DoubleArray object used to store the y-data values. |
DoubleArray |
ContourDataset.getZDataObj()
This method returns a reference to the internal DoubleArray used to store the z-values. |
static DoubleArray |
ChartSupport.makeCompressArray(int ctype,
int wSkip,
int lFirst,
int lLast,
DoubleArray source,
BoolArray validflags)
This methods creates and returns a new array that is the data reduced version of the source array. |
static DoubleArray |
ChartSupport.makeTimeCompressArray(int compresstimefield,
int compresstype,
int lFirst,
int lLast,
DoubleArray sourcetime,
DoubleArray sourcey,
BoolArray validflags)
This methods creates and returns a new array of time based values that is the data reduced version of the source array of time based values. |
DoubleArray |
ChartDataset.XData()
This method returns a reference to the DoubleArray object used to store the x-values of the dataset. |
DoubleArray |
SimpleDataset.yData()
This method returns a reference to the DoubleArray object used to store the y-values of the dataset. |
Methods in com.quinncurtis.chart2djava with parameters of type DoubleArray | |
---|---|
int |
DoubleArray2D.addColumn(DoubleArray r)
Adds a new column of data to the end of the array, increasing the number of columns by one. |
int |
DoubleArray2D.addRow(DoubleArray r)
Adds a new row of data to the end of the array, increasing the number of rows by one. |
void |
DoubleArray.copy(DoubleArray source)
Copies the source array to the current instance. |
static void |
DoubleArray2D.copyArray(DoubleArray2D source,
int sourcerow,
int sourceoffset,
DoubleArray dest,
int destoffset,
int count)
Static routine copies a row of a DoubleArray2D to a DoubleArray. |
static void |
DoubleArray2D.copyArray(DoubleArray source,
int sourceoffset,
DoubleArray2D dest,
int destrow,
int destoffset,
int count)
Static routine copies a row of a DoubleArray2D to a DoubleArray. |
static void |
DoubleArray.copyArray(DoubleArray source,
int sourceoffset,
DoubleArray dest,
int destoffset,
int count)
Static routine copies all or part of one array to another. |
static double |
ChartSupport.getMaximum(DoubleArray r)
This method returns the maximum value in an array. |
static double |
ChartSupport.getMaximum(DoubleArray r,
BoolArray valid)
This method returns the maximum value in an array. |
static double |
ChartSupport.getMinimum(DoubleArray r)
This method returns the minimum value in an array. |
static double |
ChartSupport.getMinimum(DoubleArray r,
BoolArray valid)
This method returns the minimum value in an array. |
int |
DoubleArray2D.insertColumn(int index,
DoubleArray r)
Inserts a column in the array at the specified column index, increasing the NumColumns property of the array by one. |
int |
DoubleArray2D.insertRow(int index,
DoubleArray r)
Inserts a new row of data at the specified index, increasing the number of rows by one. |
static DoubleArray |
ChartSupport.makeCompressArray(int ctype,
int wSkip,
int lFirst,
int lLast,
DoubleArray source,
BoolArray validflags)
This methods creates and returns a new array that is the data reduced version of the source array. |
static DoubleArray |
ChartSupport.makeTimeCompressArray(int compresstimefield,
int compresstype,
int lFirst,
int lLast,
DoubleArray sourcetime,
DoubleArray sourcey,
BoolArray validflags)
This methods creates and returns a new array of time based values that is the data reduced version of the source array of time based values. |
void |
DoubleArray.nDCopy(DoubleArray source)
Non-Destructive copy does not reallocate buffers, limits copy to the number of elements in the smaller of two arrays, the source or the current instance. |
void |
DoubleArray2D.setColumn(int column,
DoubleArray source)
Sets all of the row values in the specified column. |
int |
DoubleArray.setElements(DoubleArray source)
Initializes the elements of the array, starting at element 0. |
int |
DoubleArray.setElements(DoubleArray source,
int count)
Initializes the elements of the array, starting at element 0 and continuing for count elements. |
void |
DoubleArray2D.setRow(int row,
DoubleArray source)
Sets all of the column values in the specified row. |
void |
ChartDataset.setXData(DoubleArray xvalues)
This method sets the values of the xData array, the array of x-values for simple and group datasets. |
void |
SimpleDataset.setYData(DoubleArray yvalues)
This method sets the values of the yData array, the array of y-values for simple and group datasets. |
void |
PhysicalCoordinates.wPolyLineAbs(java.awt.geom.GeneralPath path,
DoubleArray x,
DoubleArray y,
int stepmode)
This method converts the specified x- and y-arrays to device coordinates, and draws the resulting line as a polyline. |
void |
PhysicalCoordinates.wPolyLineAbs(java.awt.Graphics2D g2,
DoubleArray x,
DoubleArray y,
int stepmode)
This method converts the specified x- and y-arrays to device coordinates, and draws the resulting line as a polyline. |
Constructors in com.quinncurtis.chart2djava with parameters of type DoubleArray | |
---|---|
GroupPoint2D(double px,
DoubleArray py)
Constructs and initializes a GroupPoint2D with the specified coordinates. |
Uses of DoubleArray in com.quinncurtis.spcchartjava |
---|
Methods in com.quinncurtis.spcchartjava that return DoubleArray | |
---|---|
DoubleArray |
ParetoChart.getCategoryValues()
Get the DoubleArray object holding the category values used in building the Pareto plot. |
DoubleArray |
FrequencyHistogramChart.getFrequencyLimits()
Get the DoubleArray object that holds the limit values for the frequency bins of the histogram. |
DoubleArray |
FrequencyHistogramChart.getFrequencyValues()
Get the DoubleArray object that holds the values that are counted with respect to the frequency bins. |
DoubleArray |
ProbabilityChart.getXValues()
Get the DoubleArray of the x-values of the data points plotted in the probability plot. |
DoubleArray |
ProbabilityChart.getYValues()
Get the DoubleArray of the y-values of the data points plotted in the probability plot. |
DoubleArray |
SPCControlChartData.simulateDefectRecord(double meanvalue)
Simulates a defect measurement for a SPC Attribute Control chart with a specified mean. |
DoubleArray |
SPCControlChartData.simulateDefectRecord(double meanvalue,
int type)
Simulates a defect record for a SPC Attribute Control chart with a specified mean. |
DoubleArray |
SPCControlChartData.simulateMeasurementRecord(double meanvalue)
Simulates a sample measurement for a SPC Variable Control chart with a specified mean value. |
DoubleArray |
SPCControlChartData.simulateMeasurementRecord(double meanvalue,
double range)
Simulates a sample measurement for a SPC Variable Control chart with a specified mean and range. |
Methods in com.quinncurtis.spcchartjava with parameters of type DoubleArray | |
---|---|
int |
SPCControlChartData.addNewSampleRecord(DoubleArray samples)
Add a new sample record to a batch-based SPC chart. |
int |
SPCControlChartData.addNewSampleRecord(DoubleArray samples,
java.lang.String notes)
Add a new sample record, with notes, to a batch-based SPC chart. |
int |
SPCControlChartData.addNewSampleRecord(double timestamp,
DoubleArray samples)
Add a new sample record, with notes, to a batch-based SPC chart. |
int |
SPCControlChartData.addNewSampleRecord(double timestamp,
DoubleArray samples,
DoubleArray controllimits)
Add a new sample record to a batch-based SPC chart that plots variable control limits. |
int |
SPCControlChartData.addNewSampleRecord(double timestamp,
DoubleArray samples,
DoubleArray controllimits,
java.lang.String notes)
Add a new sample record, with notes, to a batch-based SPC chart that plots variable control limits. |
int |
SPCControlChartData.addNewSampleRecord(double timestamp,
DoubleArray samples,
java.lang.String notes)
Add a new sample record, with notes, to a batch-based SPC chart. |
int |
SPCControlChartData.addNewSampleRecord(double x,
java.util.GregorianCalendar timestamp,
DoubleArray samples)
Add a new sample record to a numeric-based SPC chart. |
int |
SPCControlChartData.addNewSampleRecord(double x,
java.util.GregorianCalendar timestamp,
DoubleArray samples,
DoubleArray controllimits)
Add a new sample record to a numeric-based SPC chart that plots variable control limits. |
int |
SPCControlChartData.addNewSampleRecord(double x,
java.util.GregorianCalendar timestamp,
DoubleArray samples,
DoubleArray controllimits,
java.lang.String notes)
Add a new sample record, with notes, to a numeric-based SPC chart that plots variable control limits. |
int |
SPCControlChartData.addNewSampleRecord(double x,
java.util.GregorianCalendar timestamp,
DoubleArray samples,
java.lang.String notes)
Add a new sample record, with notes, to a numeric-based SPC chart . |
int |
SPCControlChartData.addNewSampleRecord(java.util.GregorianCalendar timestamp,
DoubleArray samples)
Add a new sample record to a time-based SPC chart. |
int |
SPCControlChartData.addNewSampleRecord(java.util.GregorianCalendar timestamp,
DoubleArray samples,
DoubleArray controllimits)
Add a new sample record to a time-based SPC chart that plots variable control limits. |
int |
SPCControlChartData.addNewSampleRecord(java.util.GregorianCalendar timestamp,
DoubleArray samples,
DoubleArray controllimits,
java.lang.String notes)
Add a new sample record with notes to a time-based SPC chart that plots variable control limits. |
int |
SPCControlChartData.addNewSampleRecord(java.util.GregorianCalendar timestamp,
DoubleArray samples,
java.lang.String notes)
Add a new sample record with notes to a time-based SPC chart. |
static void |
SPCArrayStatistics.calcFrequencyBins(DoubleArray datavalues,
DoubleArray freqlimits,
DoubleArray bins)
This method fills in the frequency bins for a frequency histogram. |
void |
SPCControlChartData.calculateControlLimits(DoubleArray controllimits)
Calculate the control limits |
double |
SPCCalculatedValueRecord.calculateHistoryStatistic(DoubleArray v,
int calctype)
Calculate the calculated value value based on the data in the source array and the specified calculation type. |
static double |
SPCCalculatedValueRecord.calculateHistoryStatisticStatic(DoubleArray v,
int calctype)
Calculate the calculated value value based on the data in the source array and the specified calculation type. |
static double |
SPCArrayStatistics.getMean(DoubleArray r)
This method returns the mean of an array. |
static double |
SPCArrayStatistics.getMedian(DoubleArray r)
This method returns the median of an array. |
static double |
SPCArrayStatistics.getRange(DoubleArray r)
This method returns the range of an array. |
static double |
SPCArrayStatistics.getSSQ(DoubleArray r)
This method returns the SSQ of an array. |
static double |
SPCArrayStatistics.getStandardDeviation(DoubleArray r)
This method returns the standard deviation of an array. |
static double |
SPCArrayStatistics.getSum(DoubleArray r)
This method returns the sum of an array. |
static double |
SPCArrayStatistics.getVariance(DoubleArray r)
This method returns the variance of an array. |
double |
SPCCalculatedValueRecord.SetCalculatedValue(DoubleArray v)
Calculate the calculated value value based on the data in the source array. |
double |
SPCCalculatedValueRecord.setCalculatedValue(DoubleArray v,
int totalsamples)
Calculate the calculated value value based on the data in the source array and the specified calculation type. |
double |
SPCProcessCapabilityRecord.setProcessCapabilityValue(DoubleArray samples)
Calculate the process capability value. |
static void |
SPCArrayStatistics.sort(DoubleArray r)
This method sorts the source array in ascending order. |
static void |
SPCArrayStatistics.sort(DoubleArray r,
boolean ascending)
This method sorts the source array in ascending/descending order. |
void |
ParetoChart.sortCategoryItems(DoubleArray categoryitems,
StringArray stringitems,
boolean ascending)
Sort the category values and category strings. |
|
|||||||||
PREV NEXT | FRAMES NO FRAMES |