timeseries
Rename timeseries in tscollection
tscollection
tscout = settimeseriesnames(tscin,oldname,newname)
example
tscout = settimeseriesnames(tscin,oldname,newname) renames a timeseries object in a tscollection object from oldname to newname.
tscin
oldname
newname
collapse all
Create a tscollection object from a timeseries object. Then, change the timeseries name from Speed to Velocity.
Speed
Velocity
ts = timeseries([3.2 4.2 6.2 8.5 1.1]',1:5,... 'Name','Speed'); tscin = tscollection(ts); tscout = settimeseriesnames(tscin,'Speed','Velocity')
Time Series Collection Object: unnamed Time vector characteristics Start time 1 seconds End time 5 seconds Member Time Series Objects: Velocity
Input tscollection, specified as a scalar.
Existing timeseries name, specified as a character vector.
New timeseries name, specified as a character vector.
timeseries | tscollection
You have a modified version of this example. Do you want to open this example with your edits?