- •Interpolation: a tsdata.Interpolation object defining
- •Increment: interval between two subsequent time values
- •IsTimeFirst: True (default) when the first dimension of the data array is
- •Indicates additional field-value pairs using the following fields:
- •Vector.
- •Interpolation methods are 'linear' and 'zoh'.
- •Values.
- •Values assigned to a time series object
- •Is false. Index is specified as an integer array.
- •Is a valid datestr format, the output strings from getAbsTime have the same format.
- •Time Series events
- •View the properties (EventData, Name, Time, Units, StartDate) of the
- •Overloaded arithmetic operations
- •Overloaded statistical functions
- •Time Series collection general
- •Time Series collection manipulations
- •In string name, from the tscollection tsc.
- •Values.
- •Vertcat Overloaded vertical concatenation for tscollection object
- •Is a valid datestr format, the output strings from getAbsTime have the same format.
In string name, from the tscollection tsc.
REMOVETS(TSC,NAMES) removes time series objects, whose names are stored in a cell array NAME, from the tscollection TSC.
Reference page in Help browser
doc tscollection/removets
<tscollection/addsampletocollection> - Add sample(s) to a collection.
ADDSAMPLETOCOLLECTION Add sample(s) to a time-series collection
TSC = ADDSAMPLETOCOLLECTION(TSC, 'TIME', TIME, TS1NAME, TS1DATA, ..., TSnNAME, TSnDATA)
adds data samples TSnDATA to a member TSnNAME in the tscollection TSC
at the time(s) TIME. Here, TSnNAME is the string that represents the name
of a time series in TSC, and TSnDATA is a data array. Note: If you do not
specify data samples for a time series member in TSC, that times series
member will contain missing data at time(s) TIME: (for numerical
time-series data) NaN values, or (for logical time-series data) FALSE
Values.
To specify quality together with the data samples (for a time series
member that requires quality values), use the following syntax:
TSC = ADDSAMPLETOCOLLECTION(TSC, 'TIME', TIME, TS1NAME, TS1CELLARRAY, TS2NAME, TS2CELLARRAY, ...)
You specify data in the first element of cell array, and the quality in
the second cell array element.
Reference page in Help browser
doc tscollection/addsampletocollection
<tscollection/delsamplefromcollection> - Remove sample(s) from a collection.
DELSAMPLEFROMCOLLECTION Delete sample(s) from a tscollection object.
TSC = DELSAMPLEFROMCOLLECTION(TSC,'Index',VALUE) removes samples from the tscollection object TSC. Here, VALUE specifies the indices of the TSC time vector that correspond to the samples you want to remove.
TSC = DELSAMPLEFROMCOLLECTION(TSC,'Value',VALUE) removes samples from the tscollection object TSC. Here, VALUE speifies the time values that correspond to the samples you want to remove.
See also tscollection/tscollection, tscollection/addsampletocollection
Reference page in Help browser
doc tscollection/delsamplefromcollection
<tscollection/resample> - Resample time series members of a collection.
RESAMPLE Redefine a tscollection object on a new time vector.
TSC = RESAMPLE(TSC,TIMEVEC) resamples the tscollection object TSC on the new time vector TIMEVEC. When TIMEVEC is numeric, it is assumed to be
specified relative to the TSC.TimeInfo.StartDate property and in the
same units as the tscollection TSC uses. When TIMEVEC is an array of
date strings, then it is used directly.
TSC = RESAMPLE(TSC,TIMEVEC,INTERP_METHOD) resamples tscollection TSC using the interpolation method given by the string INTERP_METHOD. Valid interpolation methods are 'linear' and 'zoh'.
TSC = RESAMPLE(TSC,TIMEVEC,INTERP_METHOD,CODE) resamples tscollection TSC using the interpolation method given by the string INTERP_METHOD. The integer CODE is a user-defined quality code for resampling and it will be applied to all the samples.
See also TSCOLLECTION/SYNCHRONIZE, tscollection/tscollection
Reference page in Help browser
doc tscollection/resample
<tscollection/vertcat> - Vertical concatenation of tscollection objects.
