| Package | Description |
|---|---|
| gov.usgs.earthquake.nshmp.data |
Double-valued data utilities.
|
| Modifier and Type | Method and Description |
|---|---|
IntervalTable.Builder |
IntervalTable.Builder.add(double row,
double[] values)
Add to the values in the specified row.
|
IntervalTable.Builder |
IntervalTable.Builder.add(double row,
double column,
double value)
Add to the existing value at the specified row and column.
|
IntervalTable.Builder |
IntervalTable.Builder.add(double row,
double column,
double[] values)
Add to the values in the specified row starting at the specified column.
|
IntervalTable.Builder |
IntervalTable.Builder.add(double row,
double column,
List<Double> values)
Add to the values in the specified row starting at the specified column.
|
IntervalTable.Builder |
IntervalTable.Builder.add(double row,
List<Double> values)
Add to the values in the specified row.
|
IntervalTable.Builder |
IntervalTable.Builder.add(double row,
XySequence sequence)
Add the y-values of the supplied sequence to the values in the specified
row.
|
IntervalTable.Builder |
IntervalTable.Builder.add(IntervalTable table)
Add the values in the supplied table to this builder.
|
IntervalTable.Builder |
IntervalTable.Builder.add(int row,
int column,
double value)
Add to the existing value at the specified row and column indices.
|
IntervalTable.Builder |
IntervalTable.Builder.columns(double min,
double max,
double Δ)
Define the table column intervals.
|
static IntervalTable.Builder |
IntervalTable.Builder.copyOf(IntervalTable table)
Create a new builder with the structure and content identical to that of
the supplied table.
|
static IntervalTable.Builder |
IntervalTable.Builder.fromModel(IntervalTable model)
Create a new builder with a structure identical to that of the supplied
model.
|
IntervalTable.Builder |
IntervalTable.Builder.multiply(double scale)
Multiply (
scale) all values in this builder. |
IntervalTable.Builder |
IntervalTable.Builder.rows(double min,
double max,
double Δ)
Define the table row intervals.
|
IntervalTable.Builder |
IntervalTable.Builder.set(double row,
double column,
double value)
Set the value at the specified row and column.
|
IntervalTable.Builder |
IntervalTable.Builder.set(int row,
int column,
double value)
Set the value at the specified row and column indices.
|