aboutsummaryrefslogtreecommitdiff
path: root/qolab/hardware/scope/sds1104x.py
diff options
context:
space:
mode:
Diffstat (limited to 'qolab/hardware/scope/sds1104x.py')
-rw-r--r--qolab/hardware/scope/sds1104x.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/qolab/hardware/scope/sds1104x.py b/qolab/hardware/scope/sds1104x.py
index fa0519e..6f12042 100644
--- a/qolab/hardware/scope/sds1104x.py
+++ b/qolab/hardware/scope/sds1104x.py
@@ -68,10 +68,10 @@ class SDS1104X(ScopeSCPI):
def getRawWaveform(self, chNum, availableNpnts=None, maxRequiredPoints=None, decimate=True):
"""
- If decimate is used, we get all available points and then low-pass filter them.
- The result is less noisy. But transfer time from the instrument is longer.
- If decimate=False we might see aliasing, if there is a high frequency noise
- and sparsing > 1
+ If decimate=True is used, we get all available points and then low-pass filter them.
+ The result is less noisy. But transfer time from the instrument is longer.
+ If decimate=False, then it we are skipping points to get needed number
+ but we might see aliasing, if there is a high frequency noise and sparsing > 1
"""
(sparsing, Npnts, availableNpnts, maxRequiredPoints) = self.calcSparsingAndNumPoints(availableNpnts, maxRequiredPoints)