Sliding Window Analog Array: Difference between revisions
Jump to navigation
Jump to search
Created page with "Image:TArduinoSlidingWindowAnalogArray.png == Summary == Analog array buffer component that maintains a sliding window of sampled values with optional normalization. == Description == The Sliding Window Analog Array stores a moving window of analog values. The size of the window, step size, and normalization behavior can be configured. This allows real-time signal processing such as smoothing, feature extraction, or time-series analysis. <b>Diagram:</b> I..." |
(No difference)
|
Latest revision as of 09:40, 7 September 2025
Summary
Analog array buffer component that maintains a sliding window of sampled values with optional normalization.
Description
The Sliding Window Analog Array stores a moving window of analog values. The size of the window, step size, and normalization behavior can be configured. This allows real-time signal processing such as smoothing, feature extraction, or time-series analysis.
Diagram:
Properties
- Count – Number of samples in the window (default 128).
- Normalize (boolean) – Normalizes the values in the window.
- Step – Number of steps between updates (default 1).
Pins
Input Pins
- Clock – Timing signal for sampling updates.
- In (analog) – Analog input signal to be buffered.
Output Pins
- Out (analog array) – Sliding window of analog values.
Categories
- File:TArduinoAnalogCategory.png Category Analog – Analog signal processing components.
- File:TArduinoArrayCategory.png Category Array – Array and data buffer components.