Forums › SA Series Discussions › set SwpTime using API
- This topic has 2 replies, 2 voices, and was last updated 7 years ago by
Anonymous.
Viewing 3 posts - 1 through 3 (of 3 total)
- AuthorPosts
AnonymousInactiveHow to set SwpTime to capture for SA_IQ mode using SA44B C#.NET API?
AndrewModeratorYou can change the length of the IQ capture waveform by simply changing how many IQ samples you request from the GetIQ functions. Since you know the sample rate of the device for the given acquisition, you can determine the length of the capture you need with the following equations.
sampleRate = 486111.111 / decimation;
timePerSample = 1.0 / sampleRate;
desiredSamples = desiredCaptureTime / timePerSample;
AnonymousInactiveHi Andrew,
Thanks for your response.- AuthorPosts
Viewing 3 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic.