MATLAB API
This is the class and function reference of catch22. Please refer to the user guide for further details as the class and function specifications may not be sufficient to give full context.
catch22_all
Automatically run every time series feature calculation included in the catch22/24 set.
Syntax
[featureValues, featureNamesLong, featureNamesShort] = catch22_all(data, doCatch24)
Description
[featureValues, featureNamesLong, featureNamesShort] = catch22_all(data, doCatch24)
returns a 24x1
array of feature outputs, a 24x1
array of long feature names and 24x1
array of short feature names for the input time series, data
.
Examples
Input Arguments
Output Arguments
GetAllFeatureNames
Get all feature names for the catch22/24 feature set.
Syntax
[featureNamesLong, featureNamesShort] = GetAllFeatureNames(doCatch24)
Description
[featureNamesLong, featureNamesShort] = GetAllFeatureNames(doCatch24)
retrieves all feature names for the catch22 (or catch24) feature set.
Examples
Input Arguments
Output Arguments
catch22_DN_HistogramMode_5
Measures the mode of the data vector using histogram with 5 bins.
Syntax
% individual feature method of interest, e.g., DN_HistogramMode_5
featureVal = catch22_DN_HistogramMode_5(data)
Description
featureVal = catch22_DN_HistogramMode_5(data)
computes the mode of the data vector using a histogram with 5 bins.
Examples
Input Arguments
Output Arguments
Note: All catch22/24 feature methods expect the same input arguments (and data types) and return the same output arguments (and data types).
Last updated