Jump to content
  • 0

Measurement & data saving


ilkeryelbay

Question

Dear All

 

Maybe it is an easy question to solve but I need some help. I need to get a continuous data from measurement tab from Math1 channel which I applied a filter. How can I get all values for total acquised data from Math1 channel?

Thanks for your reply

image.thumb.png.e27771b8894766e587b31ef9ccd5cb37.png

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Hi @ilkeryelbay

These averages are not available from script but can be calculated like this:

image.png

Scope.run();
const cnt = 100;
var sum = 0;
for(var i = 0; i < cnt; i++){
    Scope.wait();
    sum += Scope.Math1.measure("Custom");
}
Scope.stop();
print(sum/cnt);

 

Link to comment
Share on other sites

  • 0

Hi @ilkeryelbay

For longer capture select Mode: Record, like 5M samples at 1MHz.
I suppose you are using ADP3450 Update the software for deep device buffering and in Time group specify Samples and Rate, even for normal capture.

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...