SPL File AnalysisTypes.spl
Content
- Types
-
- ConvolveAlgorithmTypes.ConvolveAlgorithmType: An enum type that allows for specifying the algorithm to use when performing convolution.
- CrossCorrelateTypes.CrossCorrelateAlgorithmType: An enum type that allows for specifying the algorithm to use when performing cross correlation.
- CrossCorrelateTypes.CrossCorrelateMultiOutputType: This type can hold the results of the CrossCorrelate operator when using the PEARSON algorithm.
- DSPFilterTypes.DSPFilterType: An enum type that can be passed to the DSPFilter operator as an input attribute to enable dynamically setting the filter type to use (either highPass or lowPass)
Composites
composite DSPFilterTypes
Composite that contains types specific to the DSPFilter operator
Static Types
- DSPFilterTypes.DSPFilterType = enum { highPass, lowPass };
-
An enum type that can be passed to the DSPFilter operator as an input attribute to enable dynamically setting the filter type to use (either highPass or lowPass)
composite CrossCorrelateTypes
Composite that contains types specifies to the CrossCorrelate operator and native function
Static Types
- CrossCorrelateTypes.CrossCorrelateAlgorithmType = enum { STANDARD, FFT };
-
An enum type that allows for specifying the algorithm to use when performing cross correlation.
- CrossCorrelateTypes.CrossCorrelateMultiOutputType = map<set<int32>, list<float64>>;
-
This type can hold the results of the CrossCorrelate operator when using the PEARSON algorithm.
composite ConvolveAlgorithmTypes
Composite that contains types specifies to the Convolve native function
Static Types
- ConvolveAlgorithmTypes.ConvolveAlgorithmType = enum { STANDARD, FFT };
-
An enum type that allows for specifying the algorithm to use when performing convolution.