add help docs and ?

This commit is contained in:
2026-03-30 23:10:42 -07:00
parent ced43bec4f
commit 63d76bac72
76 changed files with 2184 additions and 1 deletions

26
docs/nodes/FFT 1D.md Normal file
View File

@@ -0,0 +1,26 @@
# FFT 1D
Compute the FFT amplitude spectrum of a line profile and identify the dominant period. The output x-axis is period (not frequency), sorted from short to long.
## Inputs
| Name | Type | Required | Description |
|------|------|----------|-------------|
| profile | LINE | Yes | Input line profile |
## Outputs
| Name | Type | Description |
|------|------|-------------|
| frequency_plot | LINE | FFT amplitude spectrum vs. period |
| max | RECORD_TABLE | Table with the peak period |
## Controls
None.
## Limitations
- The DC component is excluded from the output.
- Spectrum is one-sided (real FFT); the x-axis shows period, not frequency.
- No windowing is applied; spectral leakage may affect results on non-periodic inputs.