How to plot VS time after transforming data from Dynamic to array ?

Hi ! 
I am currently using a DAQ Assistant to get dynamic data from 2 channels input.
With a splitting VI, I substract one to the other and plot them ( Graphic named 1 )
Then I use a VI which transform the Dynamic result of the soustraction into an array, in order to calculate its mean.
After that step, when I turn my script ON, I am well capable to observe dynamically my mean evolve from an indicator
BUT
I can not observe it plotted VS time as I would like.
In other words, from the dynamic data I have value VS time, I get the mean of it over time, and I would like to be able to plot it back VS time, with the previous mean points plotted.
All I can get now is a single point moving up and down, because it is lacking time data.
I attached to this post a simple represenation of my issue, I hope I provide enough information.
I just would like to be able to plot like the window on the left, and not having the one on the right ...
Thank you !

Hi ! 
Thank you for your quick answer.
I see what you mean, it makes sense.
But how will I be able to plot the mean VS time if now I have all my data splited into arrays ? 
I am not sure I talk clearly ... In other ords how will I rebind that mean and Time into one wire to send it into graph VI ?

Similar Messages

  • After migrating data from Time Machine, some of my photos are not showing up in iPhoto. I get a 'dashed rectangle." When I click on it I get ' ! in a Triangle" When I click on that, I actually can see the photo. I want to see my photos

    After migrating data from Time Machine, some of my photos are not showing up in iPhoto LIbrary view. I get a 'dashed rectangle." When I click on it I get ' ! in a Triangle" When I click on that, I actually can see the photo. I want to see all  my photos in 'Library' view, and I can't figure out how these photos seem to be arbitrarily hidden. Help, please.

    Try these for the first attempt:
    First be sure to have a backup copy of the library if you already don't have one.
    OT

  • How is the best way to read data from an iphone if you lost your itunes data after a crash?

    How is the best way to read data from an iphone if you lost your itunes data after a crash?

    How is the best way to read data from an iphone if you lost your itunes data after a crash?

  • How to make users to select the date from calendar control my making the date field read only in date time control in external list in sharepoint 2010

    How to make users to select the date from calendar control only, by my making the date text field read only (don't want to let users type the date) in date time control in external list in sharepoint 2010. I am looking for a solution which can
    be done through sharepoint desginer / out of the box.
    thanks.

    Congratulate you got the solution by yourself. I am new to a
    WinForms calendar component, I feel so helpless on many problems even I'd read many tutorials. This question on the
    calendar date selection did me a great favor. Cheers.

  • How do i restore my hidden ical data from a Time Machine backup

    How do i restore my hidden ical data from a Time Machine backup?

    Use the go menu to enter any hidden folders.
    Then click on the time machine icon to restore.

  • How can we transfer huge amount of data from database server to xml format

    hi guru
    how can we transfer huge amount of data from database server to xml format.
    regards
    subhasis.

    Create ABAP coding
    At first we create the internal table TYPES and DATA definition, we want to fill with the XML data. I have declared the table "it_airplus" like the structure from XML file definition for a better overview, because it is a long XML Definition (see the XSD file in the sample ZIP container by airplus.com)
    *the declaration
    TYPES: BEGIN OF t_sum_vat_sum,
              a_rate(5),
              net_value(15),
              vat_value(15),
             END OF t_sum_vat_sum.
    TYPES: BEGIN OF t_sum_total_sale,
            a_currency(3),
            net_total(15),
            vat_total(15),
            vat_sum TYPE REF TO t_sum_vat_sum,
           END OF t_sum_total_sale.
    TYPES: BEGIN OF t_sum_total_bill,
            net_total(15),
            vat_total(15),
            vat_sum TYPE t_sum_vat_sum,
            add_ins_val(15),
            total_bill_amount(15),
           END OF t_sum_total_bill.TYPES: BEGIN OF t_ap_summary,
            a_num_inv_det(5),
            total_sale_values TYPE t_sum_total_sale,
            total_bill_values TYPE t_sum_total_bill,
           END OF t_ap_summary.TYPES: BEGIN OF t_ap,
            head    TYPE t_ap_head,
            details TYPE t_ap_details,
            summary TYPE t_ap_summary,
           END OF t_ap.DATA: it_airplus TYPE STANDARD TABLE OF t_ap
    *call the transformation
    CALL TRANSFORMATION ZFI_AIRPLUS
         SOURCE xml l_xml_x1
         RESULT xml_output = it_airplus
         .see the complete report: Read data from XML file via XSLT program
    Create XSLT program
    There are two options to create a XSLT program:
    Tcode: SE80 -> create/choose packet -> right click on it | Create -> Others -> XSL Transformation
    Tcode: XSLT_TOOL
    For a quick overview you can watch at the SXSLTDEMO* programs.
    In this example we already use the three XSLT options explained later.
    As you can see we define a XSL and ASX (ABAP) tags to handle the ABAP and XML variables/tags. After "

  • How to delete data from dynamic internal table

    Hi,
    I have dynamic internal table and I have some slection screen fields , using these selection screen fields
    (select -options), I have to filter the data? assigning will work with READ , but I have select options not the parametre,
    and also delete will not work for dynamic table..
    as we cannot use assigning with delete..
    So how to do this?
    and one more thing is , I cannot filter the data while selection( in select, I cannot filter the data-> as it's not coming directly from table, it's coming from buffer),
    so now after selection of data, I need to filter the data from dynamic table.
    Is there any way to do this?
    Regards,
    Mrunal

    Hi matt,
    I tried with below code as  you said. But I am getting dump. can you help?
    here is my piece of code.
    FIELD-SYMBOLS: <LS_DATA> type any,
                               <LT_DATA> TYPE table,
                                <L_FIELD> type any.
        ASSIGN <l_buffer_entry>-dataptr->* TO <LS_DATA>.
        ASSIGN <l_buffer_entry>-dataptr->* TO <LT_DATA>.
    LOOP AT <LT_DATA> ASSIGNING <LS_DATA>.
    ASSIGN COMPONENT 'BUKRS' OF STRUCTURE <LS_DATA> TO <L_FIELD>.
    IF <L_FIELD> NOT IN SO_BUKRS.
    DELETE <LT_DATA>.
    ENDIF.
    UNASSIGN <L_FIELD>.
    ASSIGN COMPONENT 'BELNR' OF STRUCTURE <LS_DATA> TO <L_FIELD>.
    IF <L_FIELD> NOT IN SO_BELNR.
    DELETE <LT_DATA>.
    ENDIF.
    UNASSIGN <L_FIELD>.
    ENDLOOP.
    and here is the description of my dump:->>>
    You attempted to access an unassigned field symbol
    (data segment 32772).
    This error may occur for any of the following reasons:
    - You address a typed field symbol before it is set using ASSIGN
    - You address a field symbol that points to a line in an internal table
      that has been deleted
    - You address a field symbol that had previously been reset using
      UNASSIGN, or that pointed to a local field that no longer exists
    - You address a global function interface parameter, even
      though the relevant function module is not active,
      that is it is not in the list of active calls. You can get the list
      of active calls from the this short dump.

  • How do I restart Time Machine back-up from scratch?

    How do I restart Time Machine back-up from scratch?  I have a MacBook Air that was my wife's - now given to my daughter for school.  My wife never used Time Machine to back up (she simply copied files to an external drive), so before clearing her files off the Mac HD, I tried using Time Machine for the first time with an external HD.  However, the Time Machine back up repeatedly failed after about 2GB of 28GB of files. I manually copied my wife's 28GB of files to another external HD and deleted all the files off the Mac HD. I then reformatted the external Time Machine drive. But when I try to use Time Machine to back up the MacBook Air as it is now with my daughter's files on the Mac HD to the external TM drive, Time Machine acts as if the 28GB of my wife's deleted files are still on the Mac HD and fails back-up after counting to about 2GB, even though there aren't even 2GB of files on the Mac HD now and nothing on the external TM drive. I don't need to save any back-ups of how the MacBook used to be - I just need to start from scratch with how the computer is now.  Can anyone please tell me how to get Time Machine to think the MacBook is a brand new computer and act as if it's a first time ever back up?  I tried updating to Yosemite, and tried renaming the computer in System Preferences>Sharing, plus (as noted above) deleting all the old files off the Mac HD and reformatting the external Time Machine drive - none of that worked.  All I can do at the moment is manually copy my daughter's files to an external HD - very frustrating.

    Hmmm.. Office is not hard to restore.
    You have something major wrong (Yosemite being the primary one).
    Do a verify of the source drive.. to do that you will need to boot to the recovery.. and run the disk utility from there.. it sounds like your main disk is corrupted.
    Once that is complete, delete the current setup of TM and try again.. use the widget to find out why it is failing..
    See Troubleshooting.
    A1, A4 and A5 for further info.
    http://pondini.org/TM/Troubleshooting.html
    Good luck with it..
    I would also download carbon copy cloner.. it is $40, but you can use it free for a time.. forget if a week or a month??.. to try out.. and make a proper backup before you start.. CCC is far more reliable than TM.. and in fact you might decide to simply forget about TM if it works and pays the $40.. because you can produce a bootable clone on the external drive which is a heck of a lot easier to use than TM.

  • Setting button property after selecting data from list

    I am not able to set the button property after selecting data from list.
    I would like to say that
    * If a user select an item from list, then user is only allowed to update or delete the data. The update and delete button should be enabled and save button should be disabled.
    * If the users types data manually, then user is allowed only to save this as new entry. The update or delete button at this time should be disabled and only save button should be enabled.
    I want to say that
    In both case, value will be there
    In one case, value will be from list and that is available for update or delete
    in another case, value will be typed from keyboard that is available for save(new entry).
    I do not want to use separate form for update/delete/save new record. I want to use single form for all these operations.
    I am using Form 6i and oracle 8
    Please guide me, I am trying to find this answer for last four days, but could not find the answer. Please help me. Waiting for you reply...

    Thanks Mr. fdellipriscoli,
    But where should this code be written and
    Where the parameter be set to 'YES'
    I think this code should be written somewhere when calling list.
    But bydefault list is called by pressing F9 key. Then where the parameter be set to 'YES' .
    Please help Mr. fdellipriscoli. Waiting for your reply...

  • How can I delete time machine back up from my computer hard drive

    How can I delete time machine back up from my computer hard drive?

    How to Delete a Time Machine Backup - YouTube
    If you want to remove an entire Time Machine backup on a backup drive, then the easiest way to do that is to erase the backup drive using Disk Utility. However, this will delete everything on the disk:
    Drive Erase Snow Leopard and Earlier
    1. Boot from your OS X Installer Disc. After the installer loads select your language and click on the Continue button.  When the menu bar appears select Disk Utility from the Utilities menu.
    If you are preparing an external or a non-startup drive, then open Disk Utility in your Utilities folder.
    2. After DU loads select the volume you wish to format from the left side list. Click on the Erase tab in the DU main window.
    3. Set the format type to Mac OS Extended (Journaled.) Click on the Erase button and wait until the process has completed.

  • How do I transfer my applications and data from one Mac to another?

    I am buying a new Macbook, anyone know how do I transfer my applications and data from old MacBook to New one?

    Or you can be guided bt this 'officail' Apple support document:
    http://support.apple.com/kb/PH4441
    Ciao.
    Csound 1 greetings:  Nothing wrong with a little plagiarism.

  • Long time to load data from PSA to DSO -Sequential read RSBKDATA_V

    Hi ,
    It is taking long time to load data from PSA to DSO. It is doing Sequential read on RSBKDATA_V and table contents no data .
    we are at - SAPKW70105. It started since yesterday . There is no changes in system parameters.
    Please advice. 
    Thanks
    Nilesh

    Hi Nilesh,
    I guess the following SAP Note will help you in this situation.
    [1476842 - Performance: read RSBKDATA only when needed|https://websmp107.sap-ag.de/sap/support/notes/1476842]
    Just note that the reference to Support Packages is wrong. It is also included in SAP_BW 701 06.

  • How to populate data from dynamic drop down list to the text field

    Hi,
    I tried to populate data from dynamic drop down list to city field. I would like to concat data from drop down list.When selecting add button to add the item and select item from drop down list, data should be displayed in the text field. However, Please help. I spent alot of time to make it works I am not successful.
    Please see the link below.
    https://acrobat.com/#d=SCPS0eVi6yz13ENV0cnUdw
    Thanks for your help
    Cindy

    Hi Rosalin,
    Loop the hidden table, get the values and populate drop down in each iteration.
    DropDownList1.addItem("Text","Value");
    You can use one more solution for this scenario. If it is a matter of 2,3 dropdowns, put three dropDowns in the form layout and give seperate static data binding to them. At run time make the dropDowns hide/visible as per the requirement.
    Hope this helps.
    Thanks & Regards,
    Sanoosh

  • Recently had to purchase a replacement phone a friend of mine had backed up the data on the lost phone to his Mac laptop how do I get that backed up data from the lost iPhone that's on his Mac laptop to my new replacement phone? Please give step by step

    recently had to purchase a replacement phone a friend of mine had backed up the data on the lost phone to his Mac laptop how do I get that backed up data from the lost iPhone that's on his Mac laptop to my new replacement phone? Please give step by step instructions xoxoxo
    And my iTunes sign in is also screwed up... It is underneath my friends email (the one with my backed up data on his Mac laptop) HOW DO I CHANGE THIS SO THAT I CAN DOWNLOAD APP's again...

    I suspect unless he had some items in iCloud backup then they are gone.  Connecting an iPhone to a different library from that to which it was previously connected will result in the device asking if you want to erase it.

  • How long does it take to transfer data from a PC to a Mac?

    Using Migration Assistant and I am transferring data from PC to IMac. Have no idea how ling this process should take. How long does it take to transfer data from a PC to a Mac?

    This may not be the best forum to get an answer.
    Depending on what is being/can be migrated it may be dependent on how much data is on the PC already.
    AC

Maybe you are looking for

  • Which cable i need for sony handy cam dcr-hc85e connecting iMac intel processor

    Which cable in the Applestore i need for connecting my sony handycam DCR-HC85E to Imac with intelprocessor

  • User input in loop

    For some reason I could not find information about user input in the first chapters of my programming book, therefore I decided to find out on my own. using google gave me a few hints, but I cannot figure out how to solve this problem: when trying to

  • How Do I Text Without Blackberry Predicting words??

    Hello, I just purchased the Pearl 8120 and cannot figure out how to type anything to include texts and new contacts without the auto text (think that is the name) predicting my words.  I have already gone into settings and disabled auto text but that

  • Bad cab file

    The cabinet file 'iTunes.cab' required for this installation is corrupt and cannot be used. This could indicate a network error, an error reading from the CD-ROM, or a problem with this package. Tried installing/updating to iTunes 10.0.01 (or whateve

  • When I turn i pad on first time all I get is itunes symbol what now

    how do i get home page, all i get  when i turn it on is music symbol and the end of charger as picture