timeseries
Names of timeseries in tscollection
tscollection
tsnames = gettimeseriesnames(tsc)
example
tsnames = gettimeseriesnames(tsc) returns a cell array of character vectors containing the names of the timeseries objects in the tscollection object tsc.
tsc
collapse all
Create a tscollection object from two timeseries objects. Then, display the names of the timeseries in the tscollection.
ts1 = timeseries([1.1 2.9 3.7 4.0 3.0]',1:5,... 'Name','Acceleration'); ts2 = timeseries([3.2 4.2 6.2 8.5 1.1]',1:5,... 'Name','Speed'); tsc = tscollection({ts1;ts2}); tsnames = gettimeseriesnames(tsc)
tsnames = 1x2 cell {'Acceleration'} {'Speed'}
Input tscollection, specified as a scalar.
timeseries | tscollection
You have a modified version of this example. Do you want to open this example with your edits?