|
Oakfield API Documentation 1.0.0
Numerical core APIs
|
Phase-feature extraction for real and complex fields. More...


Go to the source code of this file.
Classes | |
| struct | SimPhaseFeatureOperatorConfig |
| Configuration for phase-feature extraction. More... | |
Typedefs | |
| typedef struct SimPhaseFeatureOperatorConfig | SimPhaseFeatureOperatorConfig |
| Configuration for phase-feature extraction. | |
Functions | |
| SimResult | sim_add_phase_feature_operator (struct SimContext *context, const SimPhaseFeatureOperatorConfig *config, size_t *out_index) |
| Register a phase-feature extraction operator. | |
| SimResult | sim_phase_feature_config (struct SimContext *context, size_t operator_index, SimPhaseFeatureOperatorConfig *out_config) |
| Copy the current phase-feature configuration from a registered operator. | |
| SimResult | sim_phase_feature_update (struct SimContext *context, size_t operator_index, const SimPhaseFeatureOperatorConfig *config) |
| Replace or renormalize a registered phase-feature configuration. | |
Phase-feature extraction for real and complex fields.
| SimResult sim_add_phase_feature_operator | ( | struct SimContext * | context, |
| const SimPhaseFeatureOperatorConfig * | config, | ||
| size_t * | out_index | ||
| ) |
Register a phase-feature extraction operator.
| context | Simulation context that will own the operator. | |
| config | Optional phase-feature configuration; NULL selects normalized defaults. | |
| [out] | out_index | Optional destination for the registered operator index. |
| SimResult sim_phase_feature_config | ( | struct SimContext * | context, |
| size_t | operator_index, | ||
| SimPhaseFeatureOperatorConfig * | out_config | ||
| ) |
Copy the current phase-feature configuration from a registered operator.
| context | Simulation context containing the operator. | |
| operator_index | Index returned by sim_add_phase_feature_operator(). | |
| [out] | out_config | Receives the normalized configuration. |
| SimResult sim_phase_feature_update | ( | struct SimContext * | context, |
| size_t | operator_index, | ||
| const SimPhaseFeatureOperatorConfig * | config | ||
| ) |
Replace or renormalize a registered phase-feature configuration.
Passing NULL for config keeps the current configuration and reapplies normalization. A successful update refreshes symbolic state and invalidates the scheduler plan.
| context | Simulation context containing the operator. |
| operator_index | Index of the phase-feature operator to update. |
| config | Optional replacement configuration. |