public interface TableFeature extends TableBaseFeature, ResultBaseFeature
Modifier and Type | Method and Description |
---|---|
void |
addColumns(java.lang.String[] headers,
double[][] realData)
Add columns with given headers and real data.
|
void |
addColumns(java.lang.String[] headers,
double[][] realData,
double[][] imagData)
Add columns with given headers and real and imaginary data.
|
void |
addRow(double[] realData)
Add a row with real data.
|
void |
addRow(double[] realData,
double[] imagData)
Add a row with real and imaginary data.
|
PropFeatureList<PropFeature> |
feature()
Returns the list of features in this table.
|
double[][] |
getFilledImag()
Get the imaginary data in the table on the filled format.
|
double[][] |
getFilledReal()
Get the real data in the table on the filled format.
|
void |
importData(java.lang.String filename)
Fill the table with real or complex data from a file.
|
void |
loadFile(java.lang.String path)
Loads from a file.
|
void |
loadFile(java.lang.String path,
java.lang.String sheet,
java.lang.String range)
Loads from an Excel-file with a specified range to read, or a cell to
start from, in the specified sheet.
|
clearTableData, getColumnHeaders, getImag, getImagRow, getNRows, getReal, getRealRow, getTableData, getTableRow, isComplex, removeColumn, removeRow, save, save, saveFile, saveFile, setColumnHeaders, setTableData, setTableData
hasWarning, problem, problem
getAllowedPropertyValues, getBoolean, getBoolean, getBoolean, getBooleanArray, getBooleanMatrix, getDouble, getDouble, getDouble, getDoubleArray, getDoubleMatrix, getEntryKeyIndex, getEntryKeys, getInt, getInt, getInt, getIntArray, getIntMatrix, getReferenceArray, getString, getString, getString, getString, getStringArray, getStringMatrix, getType, getValueType, hasProperty, hasSelection, move, move, properties, remove, remove, selection, set, set, set, set, set, set, set, set, set, set, set, set, setEntry, setEntry, setEntry, setEntry, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex, setIndex
selection
active, author, author, comments, comments, dateCreated, dateModified, docMarker, docMarker, help, help, icon, isactive, isActive, label, label, lastModifiedBy, model, model, name, name, resetAuthor, scope, tag, tag, timeCreated, timeModified, version, version
getContainer, getDisplayString
void addColumns(java.lang.String[] headers, double[][] realData)
headers
- Vector of header texts.realData
- Matrix of real data.void addColumns(java.lang.String[] headers, double[][] realData, double[][] imagData)
headers
- Vector of header texts.realData
- Matrix of real data.imagData
- Matrix of imaginary data.void addRow(double[] realData)
realData
- Matrix of real data.void addRow(double[] realData, double[] imagData)
realData
- Matrix of real data.imagData
- Matrix of imaginary data.PropFeatureList<PropFeature> feature()
double[][] getFilledImag()
double[][] getFilledReal()
void importData(java.lang.String filename)
filename
- File name.void loadFile(java.lang.String path)
path
- Path to file.void loadFile(java.lang.String path, java.lang.String sheet, java.lang.String range)
path
- Path to file.sheet
- The Excel-sheet to use.range
- The range, or a starting cell.