Main Content

settimeseriesnames

Rename timeseries in tscollection

Description

example

tscout = settimeseriesnames(tscin,oldname,newname) renames a timeseries object in a tscollection object from oldname to newname.

Examples

collapse all

Create a tscollection object from a timeseries object. Then, change the timeseries name from Speed to 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 Arguments

collapse all

Input tscollection, specified as a scalar.

Existing timeseries name, specified as a character vector.

New timeseries name, specified as a character vector.

Version History

Introduced before R2006a