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
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
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.
Note: This is a typical example of how an individual feature method is called. All features are called in this way and accept the same data types as inputs while returning the same data types as outputs. You can call each feature individually using its corresponding long name as per the table of features, e.g., catch22_CO_f1ecac.
Syntax
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