You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/bin/psd.rs
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -436,22 +436,22 @@ impl App {
436
436
ui.separator();
437
437
ui.add(
438
438
Slider::new(&mutself.acq.avg,1..=1_000_000_000)
439
-
.text("Averages")
439
+
.text("Top Averages")
440
440
.logarithmic(true),
441
441
)
442
-
.on_hover_text("Target averaging count at the top stage");
442
+
.on_hover_text("Top stage averaging factor.\nLower stages will average less.\nReaching this limit will lead to same number\nof effective samples processed\nby each stage.");
.on_hover_text("Averaging limit:\nClip averaging at each stage to this\nThe averaging starts as boxcar,\nthen continues exponential");
448
+
.on_hover_text("Limit averaging at each stage.\nThe averaging starts as boxcar\nthen continues exponential.\nReaching this limit leads to the same SNR for all stages.");
0 commit comments