Main Content
generateMATLABFunction
Description
generateMATLABFunction(
generates code
based on the input feature extractor object sFE
)sFE
and opens an untitled
file containing the function extractSignalFeatures
. The function
signature depends on how you set the FeatureFormat
property of the
input feature extractor object.
When you specify
FeatureFormat
as"matrix"
, the generated MATLAB® function has this signature:The signature is equivalent to:[features,info,framelimits] = extractSignalFeatures(x)
[features,info,framelimits] = extract(sFE,x)
When you specify
FeatureFormat
as"table"
, the generated MATLAB function has this signature:The signature is equivalent to:features = extractSignalFeatures(x)
features = extract(sFE,x)
Examples
Input Arguments
Version History
Introduced in R2021b