- Table - Class in nl.liacs.timeseries.main
- 
Table is the construct that holds data. 
- Table(File, String[], double[][], long[]) - Constructor for class nl.liacs.timeseries.main.Table
- 
Constructs a Tablewith its source set by theSource,
 columns as given by theColumnNames, data as given by theData, and
 time stamps as given by theTimeStamps.
 
- TableWriter - Class in nl.liacs.timeseries.main
- 
- TableWriter(Table) - Constructor for class nl.liacs.timeseries.main.TableWriter
- 
Writes a complete  Table to  File. 
- TableWriter(Table, List<String>) - Constructor for class nl.liacs.timeseries.main.TableWriter
- 
Writes a complete, or selection of, a  Table to
  File. 
- TEXT_FIELD_COLOR - Static variable in class nl.liacs.timeseries.gui.GUI
-  
- TEXT_FIELD_SIZE - Static variable in class nl.liacs.timeseries.gui.GUI
-  
- TEXT_FONT - Static variable in class nl.liacs.timeseries.gui.GUI
-  
- Timer - Class in nl.liacs.timeseries.main
- 
Timer class for all event timings. 
- Timer() - Constructor for class nl.liacs.timeseries.main.Timer
- 
Constructs a Timer.
 
- toArray() - Method in class nl.liacs.timeseries.main.LinearRegression
- 
Returns an array containing the slope, intercept,
 Pearson's r and mean squared error that are
 calculated for the LinearRegression.
 
- toColumnName() - Method in class nl.liacs.timeseries.main.Operation
- 
Returns a short Stringrepresentation of theOperation.
 
- toString() - Method in class nl.liacs.timeseries.feature.AverageAbsoluteDeviation
-  
- toString() - Method in class nl.liacs.timeseries.feature.BasicFeature
- 
Returns the Stringrepresentation of thisFeature.
 
- toString() - Method in class nl.liacs.timeseries.feature.ConditionalAverage
- 
Returns the Stringrepresentation of thisFeature.
 
- toString() - Method in class nl.liacs.timeseries.feature.ConditionalCount
- 
Returns the Stringrepresentation of thisFeature.
 
- toString() - Method in class nl.liacs.timeseries.feature.ConditionalIntegral
- 
Returns the Stringrepresentation of thisFeature.
 
- toString() - Method in class nl.liacs.timeseries.feature.ConditionalPeakCount
- 
Returns the Stringrepresentation of thisFeature.
 
- toString() - Method in class nl.liacs.timeseries.feature.Correlation
-  
- toString() - Method in class nl.liacs.timeseries.feature.Covariance
-  
- toString() - Method in class nl.liacs.timeseries.feature.Integral
-  
- toString() - Method in class nl.liacs.timeseries.feature.InterQuartileRange
-  
- toString() - Method in class nl.liacs.timeseries.feature.Maximum
-  
- toString() - Method in class nl.liacs.timeseries.feature.Mean
-  
- toString() - Method in class nl.liacs.timeseries.feature.Median
-  
- toString() - Method in class nl.liacs.timeseries.feature.MedianAbsoluteDeviation
-  
- toString() - Method in class nl.liacs.timeseries.feature.Minimum
-  
- toString() - Method in class nl.liacs.timeseries.feature.Mode
-  
- toString() - Method in class nl.liacs.timeseries.feature.RootMeanSquare
-  
- toString() - Method in class nl.liacs.timeseries.feature.SignalsMagnitudeArea
-  
- toString() - Method in class nl.liacs.timeseries.feature.StandardDeviation
-  
- toString() - Method in class nl.liacs.timeseries.feature.Variance
-  
- toString() - Method in class nl.liacs.timeseries.kernel.AbstractKernel
- 
Returns the Stringrepresentation of the kernel.
 
- toString() - Method in class nl.liacs.timeseries.kernel.BasicKernel
- 
Returns the Stringrepresentation of thisKernel.
 
- toString() - Method in class nl.liacs.timeseries.kernel.Binarise
- 
Returns the Stringrepresentation of thisKernel.
 
- toString() - Method in class nl.liacs.timeseries.kernel.BiWeight
-  
- toString() - Method in class nl.liacs.timeseries.kernel.Cosine
-  
- toString() - Method in class nl.liacs.timeseries.kernel.Epanechnikov
-  
- toString() - Method in class nl.liacs.timeseries.kernel.ExponentialMovingAverage
- 
Returns the Stringrepresentation of thisKernel.
 
- toString() - Method in class nl.liacs.timeseries.kernel.Gaussian
- 
Returns the Stringrepresentation of thisKernel.
 
- toString() - Method in class nl.liacs.timeseries.kernel.MovingAverage
- 
Returns the Stringrepresentation of thisKernel.
 
- toString() - Method in class nl.liacs.timeseries.kernel.SimpleMovingAverage
-  
- toString() - Method in class nl.liacs.timeseries.kernel.SimpleMovingMedian
-  
- toString() - Method in class nl.liacs.timeseries.kernel.Triangular
-  
- toString() - Method in class nl.liacs.timeseries.kernel.TriCube
-  
- toString() - Method in class nl.liacs.timeseries.kernel.TriWeight
-  
- toString() - Method in class nl.liacs.timeseries.kernel.Uniform
-  
- toString() - Method in class nl.liacs.timeseries.kernel.WeightedMovingAverage
- 
Returns the Stringrepresentation of thisKernel.
 
- toString() - Method in class nl.liacs.timeseries.main.LinearRegression
- 
Returns the Stringrepresentation of theLinearRegression.
 
- Triangular - Class in nl.liacs.timeseries.kernel
- 
Triangular kernel: K(u) = 1 - |u|,
 where |u| ≤ 1.
 
- Triangular(int) - Constructor for class nl.liacs.timeseries.kernel.Triangular
- 
Constructs a Triangular kernel. 
- TriCube - Class in nl.liacs.timeseries.kernel
- 
TriCube kernel: K(u) = 70/81 * (1 - u^3)^3,
 where |u| ≤ 1.
 
- TriCube(int) - Constructor for class nl.liacs.timeseries.kernel.TriCube
- 
Constructs a TriCube kernel. 
- TriWeight - Class in nl.liacs.timeseries.kernel
- 
TriWeight kernel: K(u) = 35/32 * (1 - u^2)^3,
 where |u| ≤ 1.
 
- TriWeight(int) - Constructor for class nl.liacs.timeseries.kernel.TriWeight
- 
Constructs a TriWeigth kernel.