How can I find an example about acquiring waveform data by software trigger using PXI 4070 DMM?

Anybody could proivde an example or simliar about acquiring waveform data by software trigger using PXI 4070 DMM?
Thanks!

hi there
from the NI main page go to the developer zone http://www.ni.com/devzone/dev_exchange/ex_search.h​tm. select "LabVIEW" and "Digital Multimeter (DMM)" and search for "4070". then you'll find some examples.
Best regards
chris
CL(A)Dly bending G-Force with LabVIEW
famous last words: "oh my god, it is full of stars!"

Similar Messages

  • How can I find out the semester in a date?

    Hello I have this query
    SELECT 1949+rowno_year || lpad(rowno_month, 2, '0') MONTH_ID, to_char(to_date(to_char(1949+rowno_year || lpad(rowno_month, 2, '0')),'YYYYMM' ),'MONTH','NLS_DATE_LANGUAGE = ENGLISH') MONTH_NAME,
    to_char(to_date(to_char(1949+rowno_year || lpad(rowno_month, 2, '0')),'YYYYMM' ),'Q','NLS_DATE_LANGUAGE = ENGLISH') QUARTER_ID,
    FROM dual A,
    (SELECT ROWNUM rowno_year FROM DUAL CONNECT BY LEVEL <= 100) B,
    (SELECT ROWNUM rowno_month FROM DUAL CONNECT BY LEVEL <= 12) c
    How can I find out in which semester the date is?
    And the four_month_period??
    Thanks in advance

    >
    Simply I'm building a date from 1950 until 2050 in this formast (YYYYMM) then for each row I want to find out the Name of the month, the quarter, semester and half-month-period to which it belongs.
    >
    I meant an example where you display 1 or more rows and the your expected values. How am I to know how your definition of semester works, for example?
    C.

  • HT201342 How can I find out if an address is available. I current use bullet12@. I would like to change my address to bullet@

    How can I find out if an address is available. I current use bullet12@. I would like to change my address to bullet@

    The only way to find out is by trying to setup a new iCloud account using the address you want, or creating an email alias in your current account.
    See: http://help.apple.com/icloud/#mm6b1a490a
    It's highly unlikely that such a simple address is still available after over a decade of Apple letting people sign up for @mac.com, @me.com and @icloud.com addresses.

  • How can i find my lose iphone with the same apple id i use now

    how can i find my lose iphone with the same apple id i use now

    If you set it up on your iPhone before you lost it then you can sign into your iCloud account on a computer and attempt to locate it.

  • How can I find out more about books in the iBooks store?

    I've got iBooks for my iPod Touch and it works well. However when I search for stuff in the iBook Store, there is very little information apart from the title and author of a work. For example if it's a translation of a well-known book (think Tolstoy, Homer, Dumas), then probably there will be several different translations available, but iBooks store doesn't tell me which one it is offering; indeed sometimes more than one version is offered with no info about the difference between the versions. Is there any way of searching for more info on books in the store? After all, someone must have compiled the list.

    I always do the tapping, and this never tells me the kind of thing I was querying. However I have to admit the samples (which I haven't often used) do often seem to do the trick - I just sampled a few books, and since they all had title pages included in the sample, I got what I wanted from there. What they reveal about classics like Anna Karenina or The Odyssey is that the translations are often very old (frequently 19th Century) and therefore in the public domain. Nice because free, but I would not normally want to go back that far, so I guess iBooks is not the place to look for modern editions of classics?
    Anyway to be fair you have answered my question - but I would love iBooks to give access to better review material (not just user reviews that may or may not exist, but something more like Amazon's system): and really I would like them to have a lot more books from different periods (again like Amazon, or a really good bookshop). But I guess I'm not exactly iBooks' target audience.

  • HT5071 when a user buys my ibook in iTunes store, how can I find out more about the user, state purchased in, email it downloaded to, etc ?

    when a purchaser reads my email message in mailchimp, I am provided with the user details, email address used, state located in, etc.....why can't I get the same information from Apple iTunes when a purchaser downloads a paid copy of my iBook from the Itunes bookstore.?????  in order to complete the download of a purchased iBook, that information is gathered by Apple, but is not provided to the iBook author.....any solutions out there...

    All Apple will give you are sales counts and other such general information. Personal information about individual purchases will not be available to you.
    Regards.

  • How can i find more information about O&G RLM?

    Hi all,
    i work with RLM (Return documents). But it absolutely nothing in help about customize the subsequent onshore actions. Does anybody have some information pleeeeeeeasssse?
    Thanks and regards.
    Alexander.
    P.S. I already read hepl.
    <a href="http://help.sap.com/saphelp_oil472/helpdata/en/83/496c3a411aab70e10000000a114084/frameset.htm">Help for O&G</a>

    try
    http://help.sap.com/bp_miningv1472/ibu_all/kc/inddocs/mining/doc/472_20_25_config_guide_RLM.doc
    if not helping tell me

  • How can i get more info about the sent data in RTP?

    Hello.
    I'm working with the examples AVTransmitt2 and AV Receive2 and i want to get more information about the data that it is being sent to de receiver side. In AVTrasmitt2 i only see a calling to processor.start();. How could i know each packet that AvTransmit2 sends to the other side. I want info like the size of the data, the quality, format, etc..

    Hi!
    As I mentioned above. RTPSocketAdapter has two inner classes, SockOutputStream and SockInputStream.
    SockOutputStream have a write method which is called when RTP data is sent over the NET. SockInputStream have a read method which is called when RTP data is received.
    If you for instance want to know exactly what is sent you can parse the byte array that comes into write.
    Like this:
    * An inner class to implement an OutputDataStream based on UDP sockets.
    class SockOutputStream implements OutputDataStream {
         DatagramSocket sock;
         InetAddress addr;
         int port;
         boolean isRTCP;
         public SockOutputStream(DatagramSocket sock, InetAddress addr, int port, boolean isRTCP) {
              this.sock = sock;
              this.addr = addr;
              this.port = port;
         public int write(byte data[], int offset, int len) {
              if(isRTCP){
                   parseAndPrintRTCPData(data);               
              }else{
                   parseAndPrintRTPData(data);
              try {
                   sock.send(new DatagramPacket(data, offset, len, addr, port));
              } catch (Exception e) {
                   return -1;
              if(debug){
                   System.out.println(debugName+": written "+len+" bytes to address:port: "+addr+":"+port);
              return len;
    private void parseAndPrintRTPData(byte[] data) {
         // part of header, there still left SSRC and CSRC:s
         byte[] rtpHeader = new byte[8];
         System.arraycopy(data, 0, rtpHeader, 0, rtpHeader.length);
         ByteBuffer buffer = ByteBuffer.wrap(rtpHeader);
         int word = buffer.getInt();
         // version
         int v = word >>> 30;
         System.out.println("version: "+v);
         // padding
         int p = (word & 0x20000000) >>> 29;
         System.out.println("padding: "+p);
         // extension
         int x = (word & 0x10000000) >>> 28;
         System.out.println("extension: "+x);
         // CSRC count
         int cc = (word & 0x0F000000) >>> 24;
         System.out.println("CSRC: "+cc);
         // marker
         int m = (word & 0x00800000) >>> 23;
         System.out.println("marker: "+m);
         // payload type
         int pt = (word & 0x00700000) >>> 16;
         System.out.println("payload type: "+pt);
         // sequence number
         int seqNbr = (word & 0x0000FFFF);
         System.out.println("sequence number: "+seqNbr);
         // timestamp
         int timestamp = buffer.getInt();
         System.out.println("timestamp: "+timestamp);
    private void parseAndPrintRTCPData(byte[] data) {
         // this only works when the RTCP packet is a Sender report (SR).
         // All RTCP packets are compound packets with a SR or Receiver report (RR) packet first.
         // part of header, there is still the report blocks (see RFC 3550).
         byte[] rtcpHeader = new byte[28];
         System.arraycopy(data, 0, rtcpHeader, 0, rtcpHeader.length);
         ByteBuffer buffer = ByteBuffer.wrap(rtcpHeader);
         int word = buffer.getInt();
         // version
         int v = word >>> 30;
         System.out.println("version: "+v);
         // padding
         int p = (word & 0x20000000) >>> 29;
         System.out.println("padding: "+p);
         // reception report count
         int rc = (word & 0x0F000000) >>> 24;
         System.out.println("reception report count: "+rc);
         // payload type, which is 200 in this case (SR=200)
         int pt = (0x00FF0000 & word) >>> 16;
         System.out.println("payload type: "+pt);
         // length
         int length = (word & 0x0000FFFF);
         System.out.println("length: "+length);
         // SSRC of sender
         int ssrc = buffer.getInt();
         System.out.println("SSRC: "+ssrc);
         // NTP timestamp
         long ntp_timestamp = buffer.getLong();
         System.out.println("NTP timestamp: "+ntp_timestamp);
         // RTP timestamp
         int rtp_timestamp = buffer.getInt();
         System.out.println("RTP timestamp: "+rtp_timestamp);
         // sender's packet count
         int nbrOfSentPackets = buffer.getInt();
         System.out.println("sender's packet count: "+nbrOfSentPackets);
         // sender's octet count
         int nbrOfSentBytes = buffer.getInt();
         System.out.println("sender's octet count: "+nbrOfSentBytes);
    }I added a boolean isRTCP to the constructor so to know what sort of data is sent.
    Hope this clarifies things.

  • How can I find my liscense/serial number for my adobe software if I do not have the box anymore?

    I recently changed computers and I have my old adobe software on an external harddrive where I just copied everything over from my old computer. I want to install Adobe products that I have from my old computer on to my new computer. I do not have the box anymore of the serial numbers concerning the product. Is there a way I can do this?
    Thank you

    Hi nstancioff,
    Please refer to this KB arttcle.
    http://helpx.adobe.com/x-productkb/global/find-serial-number.html
    regards,
    Abhijit

  • How can i find my stolen iphone? Because when i want to use Find my Iphone app,but it writes an eror.

    Hi.
    First of all,congratulation for your devices and its systems.
    I have a question:
    I want to know haw i can fine my stolen iphone by find my iphone app.
    When i use find my iphone app and i enter my information,an eror is appeared contains your connection faild,please try later.
    I see this eror when  i have connected.
    Thanks for your helping.

    Hi Malekgl,
    If you have had your iPhone stolen or it has gone missing, you may find the following article helpful:
    Apple Support: What to do if your iOS device is lost or stolen
    http://support.apple.com/kb/ht5668
    Regards,
    - Brenden

  • How can I find the various products I've registered in the past using my AppleID?

    When I log using my Apple ID at
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/42/wa/directToSignIn? wosid=1DbcZ9olMGHzmf7Bha71o0&localang=en_US
    it only gives me the option to check and update my personal info. It doesn't allow me to see and manage my devices that I've registered over the years.
    Help appreciated. Thanks

    Try https://supportprofile.apple.com/MySupportProfile.do

  • How can I open a file and get the data inside  file when using  WebStart

    When I use ClassLoader,
    Which methold can I use the read the information inside that file?
    Thanks
    Ryan

    Assuming you are trying to read the jar file.
    http://forum.java.sun.com/thread.jspa?forumID=22&threadID=572955
    rykk

  • How can i find total no of files in a directory ..using fileconnection

    how can i find total no of files in a directory.
    currently iam using
    Enumeration enum = fileconn.list(); and by iterating iam getting count.
    but the application is getting stuckup when the number of files in the directory is large.
    Is there any alternative. please help.
    thanks in advance.

    HI,
    this is a simple example with a cursor over user_tables view:
    set serveroutput on
    DECLARE
       CURSOR c_test IS
          SELECT table_name FROM user_tables;
       type t_reg is table of varchar2(30);
       l_reg t_reg;
    BEGIN
       OPEN c_test;
       fetch c_test bulk collect into l_reg;
       dbms_output.put_line(c_test%ROWCOUNT);
    END;
    /Output:
    SQL>
    SQL> set serveroutput on
    SQL> DECLARE
      2     CURSOR c_test IS
      3        SELECT table_name FROM user_tables;
      4     type t_reg is table of varchar2(30);
      5     l_reg t_reg;
      6  BEGIN
      7     OPEN c_test;
      8 
      9     fetch c_test bulk collect into l_reg;
    10 
    11     dbms_output.put_line(c_test%ROWCOUNT);
    12  END;
    13  /
    42
    PL/SQL procedure successfully completed
    SQL> Regards,
    Edited by: Walter Fernández on Nov 29, 2008 8:59 AM - Adding output...

  • Find some examples about pthread by objective-c

    hello,
    Now I am studying pthread. But I can't find some examples about pthread by objective-c. The example is pass to bulid and run. Example is twoThread which can communicate each other. I will still find. If you know some useful infomation,would you support some?
    Thank you very much!

    Hi qzxin-
    Several examples of DAQ programming install with Measurement Studio for Visual Studio .NET. DAQmx examples can be found in this folder of your hard drive: C:\Program Files\National Instruments\MeasurementStudioVS2003\VCNET\Examples\DAQmx . For analog measurements, the syntax for adding multiple physical channels to the operation is "DexX/ai0:n" where X is the device number and n is the last channel in the list.
    Can you let us know more about which DAQ device and which version of Measurement Studio you're using? It would make it easier to suggest an example.
    Thanks,
    Tom W
    National Instruments

  • How can i find out what or why mac is running so slow ?

    My Mac is running as slow as a week in jail , how can i find out what is causing it , I have 1TB memory , using 635 of it at the moment. i'm using version 10.7.1 , lion. It just seems so slow to respond to anything , start up , open an app , go from one song to another in iTunes , go from one event to another in iPhoto , everything is slow . any ideas out there folks ? I'd appreciate the help.
    Thanks .

    Here is all the information i can muster , I still can't find RAM .
    Processor  3.2 GHz Intel Core i3
    Memory  4 GB 1333 MHz DDR3
    Graphics  ATI Radeon HD 5670 512 MB
    Software  Mac OS X Lion 10.7.1 (11B26)

Maybe you are looking for

  • Unassigned Values in PS reports

    Hi , We have not assigned few Cost elements in transaction code OPI2 , mainly COGS and SFGs consumption Cost elements. So they are coming in the unassigned value category. But when we run the hierarchical report S_ALR_87013532 - Plan/Actual/Variance,

  • Macbook Pro still running slow after reformat

    So my Macbook pro, which is about 3-4 years old now, just started running slow after the latest update i did, whichever the latest one was. Possibly a security update or whatever it was. So i decided it was time to reformat and just clear out the stu

  • How to place a JSlider in the middle of an image?

    Hi, Here is the deal. I have an image inside a JLabel. That JLabel is inside a JPanel, which in turn is encompassed by a JScrollPane. This image represents some curve or a frequency function, lets say for instance a sine curve. What I need to do is h

  • Error while activating the ODS

    Dear Experts, Please help me out, I am facing one problem while activating the ODS of 0FIGL. Data is uploaded successfully into the ODS but while activeting the ODS, it gives the following error message : Error when assigning SID: Action VAL_SID_CONV

  • Can't scale a 1920x1080 movie to 640x360??

    Not only does quicktime sometimes stop playing videos, now it won't scale a HD video down to 640x360. It just comes out black. I can scale to 960x540 no problem... How strange.