|
Oakfield API Documentation 1.0.0
Numerical core APIs
|
Morlet wavelet field stimulus with explicit coordinate controls. More...


Go to the source code of this file.
Classes | |
| struct | SimStimulusMorletFieldConfig |
| Configuration for a multi-scale Morlet wavelet field stimulus. More... | |
Typedefs | |
| typedef struct SimStimulusMorletFieldConfig | SimStimulusMorletFieldConfig |
| Configuration for a multi-scale Morlet wavelet field stimulus. | |
Functions | |
| SimResult | sim_add_stimulus_morlet_field_operator (struct SimContext *context, const SimStimulusMorletFieldConfig *config, size_t *out_index) |
| Register a Morlet wavelet field stimulus operator. | |
| SimResult | sim_stimulus_morlet_field_config (struct SimContext *context, size_t operator_index, SimStimulusMorletFieldConfig *out_config) |
| Copy the current Morlet-field configuration from a registered operator. | |
| SimResult | sim_stimulus_morlet_field_update (struct SimContext *context, size_t operator_index, const SimStimulusMorletFieldConfig *config) |
| Replace or renormalize a registered Morlet-field configuration. | |
Morlet wavelet field stimulus with explicit coordinate controls.
| SimResult sim_add_stimulus_morlet_field_operator | ( | struct SimContext * | context, |
| const SimStimulusMorletFieldConfig * | config, | ||
| size_t * | out_index | ||
| ) |
Register a Morlet wavelet field stimulus operator.
The implementation copies and normalizes config, then registers a split operator that sums the requested Morlet scales on the target field.
| context | Simulation context that will own the operator. | |
| config | Optional Morlet-field configuration; NULL selects normalized defaults. | |
| [out] | out_index | Optional destination for the registered operator index. |
| SimResult sim_stimulus_morlet_field_config | ( | struct SimContext * | context, |
| size_t | operator_index, | ||
| SimStimulusMorletFieldConfig * | out_config | ||
| ) |
Copy the current Morlet-field configuration from a registered operator.
| context | Simulation context containing the operator. | |
| operator_index | Index returned by sim_add_stimulus_morlet_field_operator(). | |
| [out] | out_config | Receives the operator's normalized configuration. |
| SimResult sim_stimulus_morlet_field_update | ( | struct SimContext * | context, |
| size_t | operator_index, | ||
| const SimStimulusMorletFieldConfig * | config | ||
| ) |
Replace or renormalize a registered Morlet-field configuration.
Passing NULL for config keeps the existing 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 Morlet-field operator to update. |
| config | Optional replacement configuration. |