| Contents | Index |
Minimum value of timeseries data
ts_min = min(ts)
ts_min = method(ts,Name,Value)
ts_min = min(ts) returns the minimum value in the timeseries data.
ts_min = method(ts,Name,Value)uses additional options specified by one or more Name,Value pair arguments.
ts |
The timeseries object for which you want the minimum data value. |
Specify optional comma-separated pairs of Name,Value arguments, where Name is the argument name and Value is the corresponding value. Name must appear inside single quotes (' '). You can specify several name and value pair arguments in any order as Name1,Value1,...,NameN,ValueN.
The following example finds the minimum values in multivariate time-series data. MATLAB finds the minimum independently for each data column in the timeseries object.
% Load a 24-by-3 data array: load count.dat % Create a timeseries object with 24 time values: count_ts = timeseries(count,[1:24],'Name','CountPerSecond'); % Find the minimum in each data column for this timeseries object: min(count_ts)
MATLAB returns:
7 9 7
iqr | max | mean | median | std | sum | timeseries | var

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 |