Filter out marked data from XY graph (Draw graph)

Hi there,
I've a question about "filtering" data from an XY Graph, please see the attachement.
The graph shows some sample data (white plot) and a red "ballon" plot (you can press left mouse button
and move over the graph to draw the red plot).
My need is to get all samples inside the red ballon, but presently I got stuck with it!
Any Ideas?!
(The attached VI is saved by LabVIEW2009 version)
Solved!
Go to Solution.
Attachments:
Paint_XY_Graph.vi ‏24 KB

To determine id a point is inside of the red baloon it must satisfy the condition where the X,Y is less than any X,Y point and greater than any other X,Y point.   To filter them out remove outliers from the array or set their values to nan to not plot them 
Paul Falkenstein
Coleman Technologies Inc.
CLA, CPI, AIA-Vision
Labview 4.0- 2013, RT, Vision, FPGA

Similar Messages

  • Extract data from XY graph

    hi
    here i want to extract data from the  XY graph . I attached vi which i use for 1D array . how i can use this VI for 2D Array.
    Thanks
    Solved!
    Go to Solution.
    Attachments:
    select data.vi ‏28 KB

    Hi
    I am facing problem to extract data from XY graph . I need to extract data between two cursors in a graph into an array. I was trying out the method mentioned over here but I couldnt get exact values between cursors.
    Thanks
    Attachments:
    extractdata xygraph.png ‏103 KB

  • How to print out a date from the past

    I am trying to print out a date from the past but I cant seem to get It,
    Lets use for example Independece Day,
    How would you write the code in order to print out that exact date?

    Look at the
    [url=http://java.sun.com/javase/6/docs/api/index.html?
    java/util/Date.html]Date APIActually the Calendar class would be better to use, since you can set all the different fields from year to second, plus things like day of week, day of month, week of year, etc.
    too slow
    Message was edited by:
    hunter9000

  • Is there any way so that I Being able to clear out old data from the Order

    Hi Friends,
    Is there any way so that I Being able to clear out old data from the Order Gate forecast, tolerance, and confirmed order to date tables on a monthly basis?
    Means I want data in data table for particular time (I want that if suppose today is 13-11-2008 then my data table must contain data from 13-10-2008 to 13-11-2008.
    Is it possible thru ABAP development or thru any t codes ?
    Any pointers will be rewarded.
    Regards

    hi,
    Before archiving you have to put the Deletion flag for the object(May be for PO, MMR etc as per your req.)...
    After that the you use the archiving procedure to archive the docs which are already flagged for deletion...
    For MMR you use the transaction SARA...and its respective object for the archiving....
    You can use the SDN search to see the many threads on it...
    Or use this link as per your req. and make the search...
    http://help.sap.com/saphelp_erp2004/helpdata/EN/75/ee0fa855c811d189900000e8322d00/frameset.htm
    Regards
    Priyanka.P

  • Filter out two dates in Infopackage on the same field

    Hi!
    I have this code in a infoPackage that gives me the current month intervall (if not the day is the first of a month, then it gives me previous month ). I need to add a change to this code. I would like to also filter out the date '25001231' (this is a dummy for empthy values).
    So I need both the intervall (as it is defined in the code), and a spesific date.. I have tried but I can't get it to work. Please help
    Data: l_idx like sy-tabix,
            date_low1 like sy-datum,
            date_low2 like sy-datum,
            date_high1 like sy-datum,
            date_high2 like sy-datum,
            rep_date like sy-datum.
      rep_date = sy-datum.
      read table l_t_range with key
      fieldname = 'RESOLVED_DATE'.
      l_idx = sy-tabix.
    *If the date is not '01' in the current month the loading is started on,
    *this will be triggered.
      IF rep_date+6(2) <> '01'.
    *Here we define the first date in the range, day is always '01'.
        Date_low1 = rep_date.
        date_low1+6(2) = '01'.
    *Here we put in the date we have be given, and get out
    the last day of the month.
        CALL FUNCTION 'SLS_MISC_GET_LAST_DAY_OF_MONTH'
          EXPORTING
            DAY_IN            = Date_low1
          IMPORTING
            LAST_DAY_OF_MONTH = date_high1.
        Move date_low1 to L_T_Range-Low.
        Move date_high1 to L_T_Range-High.
        L_T_Range-Sign = 'I'.
        L_T_Range-Option = 'BT'.
        modify l_t_range index l_idx.
        p_subrc = 0.
    *If the date is '01' in the current month the loading is started on,
    *this will be triggered.
      Elseif rep_date+6(2) = '01'.
    *if the day is '01' we need to extract the previous month data.
        Date_low2 = rep_date - 1.
        date_low2+6(2) = '01'.
        CALL FUNCTION 'SLS_MISC_GET_LAST_DAY_OF_MONTH'
          EXPORTING
            DAY_IN            = Date_low2
          IMPORTING
            LAST_DAY_OF_MONTH = date_high2.
        Move date_low2 to L_T_Range-Low.
        Move date_high2 to L_T_Range-High.
        L_T_Range-Sign = 'I'.
        L_T_Range-Option = 'BT'.
        modify l_t_range index l_idx.
        p_subrc = 0.
      ENDIF.

    Hi Helge
    I verified the below in my system its working now.
    Data: l_idx like sy-tabix,
    date_low1 like sy-datum,
    date_low2 like sy-datum,
    date_high1 like sy-datum,
    date_high2 like sy-datum,
    rep_date like sy-datum.
    rep_date = sy-datum.
    *l_idx = sy-tabix.
    *If the date is not '01' in the current month the loading is started on,
    *this will be triggered.
    IF rep_date+6(2) ne '01'.
    *Here we define the first date in the range, day is always '01'.
    Date_low1 = rep_date.
    date_low1+6(2) = '01'.
    *Here we put in the date we have be given, and get out
    * the last day of the month.
    CALL FUNCTION 'SLS_MISC_GET_LAST_DAY_OF_MONTH'
    EXPORTING
    DAY_IN = Date_low1
    IMPORTING
    LAST_DAY_OF_MONTH = date_high1.
    break sbhaskar.
    Move date_low1 to L_T_Range-Low.
    Move date_high1 to L_T_Range-High.
    L_T_Range-Sign = 'I'.
    L_T_Range-Option = 'BT'.
    modify l_t_range index sy-tabix.
    p_subrc = 0.
    *If the date is '01' in the current month the loading is started on,
    *this will be triggered.
    Elseif rep_date+6(2) = '01'.
    *if the day is '01' we need to extract the previous month data.
    Date_low2 = rep_date - 1.
    date_low2+6(2) = '01'.
    CALL FUNCTION 'SLS_MISC_GET_LAST_DAY_OF_MONTH'
    EXPORTING
    DAY_IN = Date_low2
    IMPORTING
    LAST_DAY_OF_MONTH = date_high2.
    Move date_low2 to L_T_Range-Low.
    Move date_high2 to L_T_Range-High.
    L_T_Range-Sign = 'I'.
    L_T_Range-Option = 'BT'.
    modify l_t_range index sy-tabix.
    p_subrc = 0.
    ENDIF.

  • How to print out the data from the file ?

    hi all,
    i have upload my file to here :
    [http://www.freefilehosting.net/ft-v052010-05-09 ]
    anyone can help me to print out the data from the file ?
    the content of the file should be like this :
    185.56.83.89 156.110.16.1 17 53037 53 72 1
    and for the seven column is
    srcIP dstIP prot srcPort dstPort octets packets

    hi all,
    i have try to do this
    public static void Readbinary() throws Exception
              String file = "D:\\05-09.190501+0800";
              DataInputStream dis = new DataInputStream(new FileInputStream(file));
              //but then how to read the content ??????can you give me more hint ?????
    i have find the netflow v5 structure by C
    struct NFHeaderV5{
    uint16_t version; // flow-export version number
    uint16_t count; // number of flow entries
    uint32_t sysUptime;
    uint32_t unix_secs;
    uint32_t unix_nsecs;
    uint32_t flow_sequence; // sequence number
    uint8_t engine_type; // no VIP = 0, VIP2 = 1
    uint8_t engine_id; // VIP2 slot number
    uint16_t reserved; // reserved1,2
    struct NFV5{ 
    ipv4addr_t srcaddr; // source IP address
    ipv4addr_t dstaddr; // destination IP address
    ipv4addr_t nexthop; // next hop router's IP address
    uint16_t input; // input interface index
    uint16_t output; // output interface index
    uint32_t pkts; // packets sent in duration
    uint32_t bytes; // octets sent in duration
    uint32_t first; // SysUptime at start of flow
    uint32_t last; // and of last packet of flow
    uint16_t srcport; // TCP/UDP source port number or equivalent
    uint16_t dstport; // TCP/UDP destination port number or equivalent
    uint8_t pad;
    uint8_t tcp_flags; // bitwise OR of all TCP flags in flow; 0x10
    // for non-TCP flows
    uint8_t prot; // IP protocol, e.g., 6=TCP, 17=UDP, ...
    uint8_t tos; // IP Type-of-Service
    uint16_t src_as; // originating AS of source address
    uint16_t dst_as; // originating AS of destination address
    uint8_t src_mask; // source address prefix mask bits
    uint8_t dst_mask; // destination address prefix mask bits
    uint16_t reserved;
    but how to translate the structure to java,then get the data from the file ?
    Edited by: 903893 on Dec 21, 2011 10:52 PM

  • My iphone 5 was recently stolen. I had the service shut off, but I don't know how to remotely wipe out my data from my phone! Please help!!

    My iphone 5 was recently stolen. I had the service shut off, but I don't know how to remotely wipe out my data from my phone! Please help!!

    YOu can only do that if you had find my iphone setup and activated prior to having your phone stolen.
    Then you log into icloud.com to remote wipe, but your phone has to be connect to wifi or cellular data to do that.

  • Extract datas from XY- graph

    hi,
             how to extract the graph data in XY - graph using cursor's, i checked with property nodes cursor index returns always zero  while i moving the cursor..
    i was already done with same coding with labview 7.1, was working fine...
    i am new with labview 8.5. i think that i need to do other ways...
    suggest me how to do?
    thanks,
    balaji dp
    Regards,
    Balaji DP
    Attachments:
    Cursor.JPG ‏6 KB

    here i attached vi, this is for labview 7.1
    Regards,
    Balaji DP
    Attachments:
    waveform_extractor.vi ‏62 KB

  • Help - How To Filter Out Completed Tasks from Remember

    I am a new user to Blackberry Classic OS 10.3.2. When I view tasks in the Remember app I would like to filter out or hide the tasks that are completed. The completed tasks currently still appear in the list and are crossed out but are cluttering up my list. Note that my tasks are synched to Outlook 2010. I have a long list of tasks and unless I can hide the completed tasks, the Remember app is not feasible. The sorting does not help as there is no way to sort all the incomplete to the top of the list. Thanks - hopefully someone knows a way around this!

    Hi Manuel,
    You should enclose the part you don't want to be checked...
    eg.
    REPORT zreport.
    SET EXTENDED CHECK OFF.  "To deactivate extended checks
    INCLUDE (standard include 1).
    INCLUDE (standard include 2).
    SET EXTENDED CHECK ON.  "To reactivate extended checks
    START-OF-SELECTION.
    Kr,
    Manu.

  • How to filter the Event Data from the EventHub when consuming data?

    We know the EventHub has the filter function. I'm designing a new solution for a customer and it looks like EventHubs are great for sending and receiving our near-realtime
    data. Downside is when receiving the data, we receive all data of all our devices in the world. Most of the time, our clients only want to see data of one (or a few) device. We could of course filter the data by ourselves, client side, but
    this would cost a lot of bandwith.
    From the
    FeedBack, it said Filters will be tied to Consumer Groups. And I Check the Consumer Group Class, it has the Create Time and Update Time, but it
    has no set Function,
    So how to use the Consumer Group to filter Event Data during the Receiving data?
    Because in our solution, we use the EventHubHost to consume data, if our service bus worker role restart, we will receive all data in the EventHub, but we only want
    to receive the latest data,
    If we use the EventHubHost to consume data, can we also to filter data? If yes, how to do?
    Thanks very much!

    Yes right,
    AFAIK there isn't a filter feature for Event Hub. The only way to have now is to put a specific property inside your EventData that consumer group can check to filter if it is interested in the data or not.
    Paolo.
    Paolo Patierno

  • Clearing all historical data from the graphs

    Hi all,
    Now that I have upgraded to 4.1.1c I want to clear all historical data and start from scratch with the graphs/stats/reporting. Is there a way to do such a thing? Could not find anything in the docs other than "clear statistics all" which seems unrelated.
    Thanks
    Adrian

    http://www.cisco.com/en/US/docs/app_ntwk_services/waas/waas/v411/configuration/guide/monitor.html#wp1043484
    Enclosed is the report montioring and configuring guide.
    The clear statistics command clears all statistical counters from the parameters given. Use this command to monitor fresh statistical data for some or all features without losing cached objects or configurations.

  • Unable to find out remaining data from website or My Verizon - anyone else?

    For the last few days I have been unable to check data usage from either the Verizon website by logging in or from My Verizon on my phone - it gives a very useless "readout" but there's no way to determine how much data I have.  Guess this has been since the prepaid "system upgrade" a week ago.  Is this the case with everyone and does anyone have ANY idea when this will be resolved?  I just can't face calling customer service.
    A work-around is to call #3282 from your prepaid phone - it does tell you remaining data.  I have to assume that it's correct.

    I'm in the same boat.  I switched from postpaid to prepaid and it just shows my postpaid acct.  Myverizon app is usless I can't even log in or register with it...

  • How to clear data from XY graph for another trial

    I have a XY graph of motor counts versus  intensity. I used shift registers for building Array VI. After terminating the program once using stop terminal. And I cleared the graph. When I start taking measurement second time, same data repeats before the first one. So how can  clear it. Please reply 
    Solved!
    Go to Solution.

    That's one very quick way of doing it : initialize your shift registers.
    What happens in your VI is that after the VI stops (when you clic the stop button) the data that is in the shift registers (your X and Y arrays) stays in memory, so if you run again the VI it will add data into those arrays.
    To initialize your shift registers you need to connect en empty array to them before the while loop. Like this :
    hope this helps
    When my feet touch the ground each morning the devil thinks "bloody hell... He's up again!"

  • Problem: "Select a Range" doesn't work (Cannot mark data from MS Excel)

    Hi,
    I need Your help. I have some problem with connection with MS Excel.
    I can't use MS Excel range as data source.
    Please find short overview of this situation (video clip):
    [http://www.explorer-consulting.pl/XC-prob.swf|http://www.explorer-consulting.pl/XC-prob.swf]
    (Windows 7 + Office 2007).
    Maybe there is something to do w/ Windows 7 admin options, but I have no idea what kind of them.
    Please share Your ideas.
    Wojtek

    Hi Liliana,
    about video (it's flash swf file) so maybe You have to give permission to watch this (in Your browser).
    but here You are screenshot too:
    [http://www.explorer-consulting.pl/xc.jpg|http://www.explorer-consulting.pl/xc.jpg]
    XC 2008 servicepack3 with fixpacks 3.1, 3.2, 3.3 and 3.4
    I try to select cells in Excel area, but "Select a Range" window is blank all the time.
    Edited by: WojciechKorsak on Jan 31, 2011 7:38 PM

  • How do I have to define a regular expression to filter out data from file?

    Hi all,
    I need to extract parts of lines of a ASCII file and didn't get it done with my low knowledge of regular expressions
    The file contains hundreds of lines and I am just interested in a few lines, within that lines I just need a part of the data.
    One original line looks like that:
    TP3| |TP_SMD|Nicht in Stueckliste|~TP TP_SMD TESTPUNKT|-|0|87.770|157.950|0|top|c| |other|TP_SMD|TP_SMD_60RF-TP
    Only the bold and underlined information is of interest, I don't need the rest.
    I can open that file, read in each line but then I am struggling to pick out only the lines of interest (starting with TP), taking that TP with its number and the coordinates following later on and then writing these shortened lines to a new text file. So the new line should look like that:
    TP3; 87.770;157.950;0 (It doesn't matter if the separator will be ; or |)
    I thought of using regular expressions - is that the right way or is there a better approach?
    Thanks & regards,
    gedi, using LabVIEW 8.5
    Regards,
    gedi

    Hi max,
    for finding a specific part of a string you can use the "Match Pattern" VI, it is located in the Strings Palette.
    Maybe the Extract Numbers.vi example in the examples browser library can help you.
    What I did to filter out my data of interest is first to sort out only the columns which I want to have -
    then there are still a lot of lines remaining I don't need (this is the thing described above).
    The rest I am going to filter out with a (then easy) regular expression with the "Match Pattern" VI.
    Regards,
    gedi
    Regards,
    gedi

Maybe you are looking for

  • Separating apps/music in iTunes for 2 different apple id's

    I've had an iPhone for a few years and I recently got my daughter an iPod. She has her own email account for facetime/texting but I originally signed her in with my apple id.  She's been downloading free apps to her ipod and I've been entering my app

  • Generic questions about CMYK profiles and proofing

    I just read a big book about color management and am trying to make it happen but it seems that in real life I can't get good results. I have my scanner profiled and it produces aRGB docs. All good and fine. The images look good on the monitor (which

  • BUG?! hyperlink can't be changed by coding

    hiho, i like to change the text- and the link-value of a hyperlink in my code. for this i've putted a hyperlink-control on a page and 've included the following code in the page-constructor:     public Page1() {         // <editor-fold defaultstate="

  • Coursebuilder features not showing up in Dreamweaver

    After installing the eLearning Suite, I'm not seeing the Coursebuilder features in Dreamweaver. The Quiz templates show up in Flash, but no Coursebuilder in DW. Anyone else encounter this?

  • Migration of Authorisation Objects

    Dear Team, I have to migrate the existing BW3.1 authorisation objects to new BI7 analysis authrisation objects. How to get the documentation of the existing authorization setup (for example, to define user groups for the migration) Best Regards, SG