| Contents | Index |
Data quality descriptions
getqualitydesc(ts)
getqualitydesc(ts) returns a cell array of data quality descriptions based on the Quality values you assigned to a timeseries object, ts.
ts |
A timeseries object. |
Create a timeseries object, and then get the data quality description strings for ts:
% Create a timeseries object, ts, with Data, Time, and Quality
% values, respectively:
ts = timeseries([3; 4.2; 5; 6.1; 8], 1:5, [1; 0; 1; 0; 1]);
% Set the QualityInfo property, including Code and Description:
ts.QualityInfo.Code = [0 1];
ts.QualityInfo.Description = {'good' 'bad'};
% Get the data quality description strings for ts:
getqualitydesc(ts)
MATLAB returns:
ans =
'bad'
'good'
'bad'
'good'
'bad'| © 1984-2012- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |