| Contents | Index |
Query timeseries object property values
get(ts)
value = get(ts, PropertyName)
get(ts) displays all properties and values of the timeseries object, ts.
value = get(ts, PropertyName) returns the property value for the specified timeseries object. The following syntax is equivalent:
value = ts.PropertyName
ts |
A timeseries object. |
PropertyName |
String specifying the name of a timeseries property. For a list of timeseries properties, see timeseries. |
value |
String containing the value associated with the specified property. |
Create a timeseries object, and then get the name. This example gets the name three different ways:
ts1 = timeseries(rand(5,1),[1 2 3 4 5], 'Name', 'MyTimeseries'); get(ts1) get(ts1, 'Name') value = ts1.Name

Explore how to use MATLAB to make advancements in engineering and science.
| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |