XYGraph: export minimized data set for same plot form

hello all
we are loading about 50'000 data points into a XY Graph.
Assuming that the graph is 1'000 pixel wide and the line width of the plot is in minimum 1 pixel, we see about every 50th value when looking at the whole horizontal range of the data set.
that's fine.
now we would like to export the data into a further processing where only the visual aspect of the plot is important.
if we use the initial data set of 50'000 values it needs much time. and most of the data is not important (not visible) because there are stucked, hidden behind the 1'000 visible data points.
so we look for a way to use only the most important values, the 1000 points which are shown as own pixels in the forground. like the plot itself when exporting it to a bitmap for example.
filtering out every 50th point does not seem a good way because the original form of the plot can be tampered. we assumed it at least and think that is not the way Labview handles the graph visualisation.
Does anyone know how Labview builds and optimize the graph build up or how a minimized data set with the same plot form can be made out of the whole set?
thanks for any help
best, mischl

Hi,
the algorithm how Labview builds and optimize the graph is not published. Attached you find an example how you can minimize data for export. A typical usage in application is therefore finding peaks, which could be filtered out by the actual graph visualizaiton. 
Dont heasitate to ask again if you have any new quesitons concerning the subject.
Best Regards, Fabian

Similar Messages

  • Open data set for reading excel file on application server in back ground

    open data set for reading excel file on application server in back ground

    hi Vijay,
    I am afraid you won't be able to read from Excel file on Appl. Server.
    ec

  • Bt rfs date set, for about a few months ago :(

    So basically my elderly exchange which i get a measly 7mbps off had its rfs date set for 21CN and adsl2 (woohoo me though, good internet speeds for once!) it was set for:
    BT have announced a ready for service date for this exchange. The estimated go live date is between 13th April 2012 and 31th May 2012.
    So basically i probably think its not gona be done, as most people in my area are quite old and the exchange only serves 2000 people. My exchange is holymoorside btw, so who wants to vote will they finish it in 11 days? 
    Who knows (im guessing ill probably be stuck on slowness for a while to come)

    My exchange with 1,270 residential premises, not sure how old it is, had a 21CN rfs date of 31st March.  I was upgraded on 24th April, although not to ADSL2+ according to the experts on here.  I am delighted to have a doubling of my speed from 1.2 to 2.4Mbps.   Many people in my village get ~100Kpbs and some can’t get broadband at all.  So at 7Mbps we would all be over the moon, can we all move to your exchange please !
    Best regards,
    dfenceman

  • Failed to retrieve data set for spry

    I created a spry data set on a blank html page and had no
    problems. However, when I followed the same steps on an existing
    website I get a large box in live view saying "Failed to retrieve
    data set (ds2) for spry:repeat". I tried to create the spry set
    inside a div which was inside a div that was inside a table. Could
    nesting be the problem?

    Its because you have a JavaScript error on your page.
    in your iframe..
    var this_week_wed = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Wednesday']/items/item"{distinctOnLoad:true});
    it needs a , after your "/items/item"
    var this_week_wed = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Wednesday']/items/item",{distinctOnLoad:true});

  • Help with Spry Detail Regions, XML Data Sets, for IMG gallery

    Hello,
    I'm working on a site for a friend of mine, a photo gallery. You can see the gallery here, it's a temporary one I'm working on
    http://www.emiliajozefa.com/a_index.html
    Here are some important parts of my code:
    //initially load these data sets. the function will be called by the links to update components later<script type="text/javascript">
         var intNumPhoto = 0;
         dsGallery = new Spry.Data.XMLDataSet("photofile.xml", "galleries/ride/photo");
         dsNav = new Spry.Data.XMLDataSet("photofile.xml", "galleries/ride");
         function updateSpryComponents(galleryDir){
              alert("updating spry components for " + galleryDir);
              intNumPhoto = 0;
              dsGallery = Spry.Data.XMLDataSet("photofile.xml", "galleries/" + galleryDir + "/photo");
              dsNav = Spry.Data.XMLDataSet("photofile.xml", "galleries/" + galleryDir);
              dsGallery.setCurrentRow(intNumPhoto);
              //document.getElementById('nav').innerHTML='<H1>'+enlarge.inp.value+'</H1>';
              document.getElementById('nav').innerHTML=
              "<span spry:detailregion = 'dsGallery'>
             <a href = 'javascript:' onclick = 'if(intNumPhoto > 0){intNumPhoto -= 1}; dsGallery.setCurrentRow(intNumPhoto);'>&lt;</a> {@id} / </span>
             <span spry:detailregion = 'dsNav'>{@numPhotos}
             <a href = 'javascript:' onclick = 'if(intNumPhoto < ({@numPhotos} - 1)){intNumPhoto += 1; }; dsGallery.setCurrentRow(intNumPhoto);'>&gt;</a>
             </span>";
    </script> <--- later ----><!-- SIDEBAR NAV. When link i clicked, set DataSet to the location of the new gallery -->
         <div id = "sideBarNav">
             <a href = "javascript:" onclick ='updateSpryComponents('ride');">Tannersville</a>
                <br />
              <a href = "javascript:" onclick = "updateSpryComponents('dive');">Dive</a>
            <br />
              <a href = "javascript:" onclick = "updateSpryComponents('poland');">Poland</a>
            <br />
              <a href = "javascript:" onclick = "updateSpryComponents('alaska');">Alaska</a>
        </div>
    </div>
    <div id = "content2">
         <!-- PHOTO CONTAINER I think I somehow need to refresh this section of the code to reload new data-->
         <div id = "fotoContainer" spry:detailregion="dsGallery"><img src = "photos/{@path}" width = "{@width}" height = "{@height}"/></div>
         <!-- IMAGE NAVIGATION -->
         <div id = "nav">       
             <span spry:detailregion = "dsGallery" id = "galSpan">
             <a href = "javascript:" onclick = "if(intNumPhoto > 0){intNumPhoto -= 1}; dsGallery.setCurrentRow(intNumPhoto);">&lt;</a> {@id} / </span>
             <span spry:detailregion = "dsNav" id = "navSpan">{@numPhotos}
             <a href = "javascript:" onclick = "if(intNumPhoto < ({@numPhotos} - 1)){intNumPhoto += 1; }; dsGallery.setCurrentRow(intNumPhoto);">&gt;</a>
             </span>
         </div>
    You could view source there to get the code. Here is what I believe is my problem
    I'm trying to automate the site so that when you click on one of the links on the left, without refreshing the page, the paths to the galleries xml file changes, and the spry Detail Regions (1 for the images, 1 for the navigation - left and right arrows). I think the problem is that once the link changes the set and calls my updateSpryComponenets() function, the detail regions need to be refreshed. I'm currently trying to solve this by dynamically rewriting the HTML thru .innterHTML, everytime I call updateSpryComponents().There may also be a problem in the Javascript function updateSpryControllers because if I put the alert after the spry calls, I never get the alert
    Thanks in advance for any help!

    Update:
    Ok, the first query on the Recent tab doesnt work for me because it wont show unless its already voted, and since these are supposed to be new blurts, that kind of breaks the whole site:
    "SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt,Blurt.`Date`,DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date, ratings.rating_id, Avg(ratings.rating_value) as average_r FROM ratings Left Join Blurt On ratings.rating_id = Blurt.Id_blurt Group By Id_blurt ORDER BY Blurt.`Date` DESC";
    So I replaced it with what I originally had.
    "SELECT Blurt.Id_blurt, Blurt.Name, Blurt.Location, Blurt.Blurt,Blurt.`Date`,DATE_FORMAT(Blurt.`Date`, '%l:%i %p on %M %D, %Y') as Date FROM Blurt ORDER BY Blurt.`Date` DESC";
    But this doesn't provide me with the initial average rating:(

  • Report Runing Very Slow for  range even data set for that range is small

    Hello Experts,
      I have a report which runs on date selection.
    When I run the report for say 01.01.2000 -31.12.2010  whcih contains 95% of the data , the report output is coming with in a minute.
    But when I ran the report from 01.01.2011 - 31.12.2011 , or say 01.01.2011 for a single day , where the data set is hardly 3k records,the report is runing for long time 15 - 20 minutes and not showing output.
    But when i remove this variable and run the report , it is coming again with in a minute.
    One weird thing is when i ran the report from 01.01.2000 - 31.12.2011 it is also coming with in a minute, but when i ran for 01.01.2011 single day it is not coming.
    Can any one share some inputs on this one.
    Thanks
    Vamsi

    Hello Experts,
      I have a report which runs on date selection.
    When I run the report for say 01.01.2000 -31.12.2010  whcih contains 95% of the data , the report output is coming with in a minute.
    But when I ran the report from 01.01.2011 - 31.12.2011 , or say 01.01.2011 for a single day , where the data set is hardly 3k records,the report is runing for long time 15 - 20 minutes and not showing output.
    But when i remove this variable and run the report , it is coming again with in a minute.
    One weird thing is when i ran the report from 01.01.2000 - 31.12.2011 it is also coming with in a minute, but when i ran for 01.01.2011 single day it is not coming.
    Can any one share some inputs on this one.
    Thanks
    Vamsi

  • Update Apn data setting for BlackBerry 9800 torch.

    How can I update my Apn data setting on the BlackBerry 9800 torch? Because I am on the AT&T pay as you go plan, but on the pay as you go plan the phone as no mobile network but I have to use the wi-fI because on the 50$ unlimited plan is only talk and text, so I am trying to go to net 10 because unlimited talk and text and web and I have the unlocked code so I can take it over to net to but I when net 10 web page and they say I need to Updated the Apn data setting that the phone will work right, can someone help me, even if I have to someone besides net 10, just so the phone works at 100%.
    Solved!
    Go to Solution.

    Hello!
    Here is a KB with instructions:
    KB05327 How to set the APN settings on the BlackBerry smartphone
    Hopefully it contains something useful! 
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Can I export the data collected in a PDF Form to a Word Template?

    I work in the legal field and constantly have to draft the same legal documents over and over. I would like to creat a form that allows me to collect the data I fill in as well as export that data into the word templates for legal document drafts. Is this possible?

    Hi,
    The Acrobat Forms forum would be a better target for your question:
    http://forums.adobe.com/community/acrobat/forms
    Regards,
    Brian

  • How do I auto fill a date field for an Adobe form?

    Hi. I am new to Acrobat. I would like to have Acrobat auto fill today's date in a date field when I open an acrobat form. I check the forum help and it indicated that I associate this javascript text to the field:
    var f = this.getField("Today"); if (f.valueAsString=="") f.value = util.printd("mm/dd/yyyy", new Date());
    However, when I try it out, nothing happens.
    Any clue as to what I am doing wrong?
    - Michael

    Hi M. Krebs,
    Is there a text field in the PDF labeled "Today" and set as a date field? And does the Date Options format set for the field match what is in the JavaScript (mm/dd/yyyy)?
    Best,
    Sara

  • How to use two RFC models in one Data Source for a Interactive Form UI Elem

    Hi
    I want to use two RFC models (two Function Modules from a SAP Backend system) in one context node of a View Controller in order to pass it as the data source to a Interactive Form UI element. Can I use the data binding mechanism directly or have I to copy the data into a Value Node within the view controller.
    Thanks for helping
    René Morel
    SAP (Schweiz) AG

    Rene,
    You can create a local context node in component controller and copy the data from both the RFC's to this node, then bind it to the view controller. Then you can make this view context node as the datasource of the interactive form.
    Regards,
    Anand

  • Data import for users of forms created with Livecycle Designer

    Hello,
    I have seen several posts regarding data import for forms created by Livecycle Designer but nothing that helps with something I am trying to accomplish.  I can create a data connection and import information in a form but what I would like to do is import data, then send the pdf for completion to a user.  There are a few data elements that I have available and the rest of the information comes from from the user.  The problem I run into is once I create a data connection, the pdf is ALWAYS looking for the source file for that data.  I simply want to prepopulate some fields and send to the various users for completion.  Any help would be greatly appreciated.
    Thanks!

    Which type of Data Connection are you trying to create?
    XML Schema, Sample Data File or WSDL?
    Creating any one of first two types(mentioned above) will only create schema and will never import any data into PDF.
    If you create the WSDL connection, you can surely import data (i.e. prepopulate data) into your PDF and forward it for users review/fill.
    If I misunderstood your question, please get me clarified.
    Nith

  • Selecting different parameters for same plot

    So I am currently working on a VI to integrate on a system. In this VI I would like to have a plot that will aloow me to select different parameters for both X and Y axes. I was thinking of having a drop down menu with the different parameters, ie Time vs Pressure, Pressure vs Temperature. How can I go about making this?
    I would also like to have the choice of plotting multiple signals on the same graph, ie Temperature 1 & Temperature 2 vs Time.
    Right now I am only able to graph one paramater vs time, I am graphing Pressure vs Time on this current VI.
    Thanks for the help

    You did not mention, whether you want an online plotting feature, or you have already all data, and you just want to plot them? The following regards to the online data collection case:
    I would go with a XY-Graph. I would store the XY value pairs in arrays (or you can go with cluster and arrays inside), and building them incrementally. You can store them in shift register(s), but also think about how to avoid the memory leak (if your shift register(s) reaches a size limit, delete some data from the beginning).
    The drop-down menu could be connected to an Event structure, where you can change the axis labels via property nodes, and also change the source of data for the Graph.
    edit: you can also add multiple Y-axis to the Graph, if you find it useful

  • Failed to retrieve data set for spry:repeat

    Help! I have read all the posts and fixes in the forums, but
    none seem to be helping me. I have moved this coding from my
    homepage to a sub-page. It previously worked fine on the homepage.
    The coding is the same, however I get the same error message each
    time. What am I missing?
    Below is my coding:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xmlns:spry="
    http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">
    <!--
    .style1 {
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: small;
    .style2 {font-family: Verdana, Arial, Helvetica, sans-serif}
    .style3 {font-size: small}
    .style5 {color: #808000}
    -->
    </style>
    <script src="../../SpryAssets/SpryMenuBar.js"
    type="text/javascript"></script>
    <script src="../../Scripts/AC_RunActiveContent.js"
    type="text/javascript"></script>
    <script src="../../SpryAssets/xpath.js"
    type="text/javascript"></script>
    <script src="../../SpryAssets/SpryData.js"
    type="text/javascript"></script>
    <script type="text/javascript">
    var this_week_mon = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Monday']/items/item",{distinctOnLoad:true});
    var this_week_tue = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Tuesday']/items/item",{distinctOnLoad:true});
    var this_week_wed = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Wednesday']/items/item"{distinctOnLoad:true});
    var this_week_thu = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Thursday']/items/item",{distinctOnLoad:true});
    var this_week_fri = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Friday']/items/item",{distinctOnLoad:true});
    var this_week_sat = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Saturday']/items/item",{distinctOnLoad:true});
    var this_week_sun = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Sunday']/items/item",{distinctOnLoad:true});
    </script>
    </head>
    <body>
    <table>
    <tr>
    <td width="200"><span class="style14
    style1"><strong>Monday</strong></span></td>
    </tr>
    <tr valign="top">
    <td><div spry:region="this_week_mon"><span
    spry:repeat="this_week_mon"><a href="{@href}"class="style14
    style5 style3">{item}</a><br />
    </span></div></td>
    </tr>
    <tr>
    <td width="200"><span class="style14
    style1"><strong>Tuesday</strong></span></td>
    </tr>
    <tr valign="top">
    <td><div spry:region="this_week_tue"><span
    spry:repeat="this_week_tue"><a href="{@href}" class="style14
    style5 style3">{item}</a><br />
    </span></div></td>
    </tr>
    <tr>
    <td width="200"><span class="style14 style2
    style3"><strong>Wednesday</strong></span></td>
    </tr>
    <tr valign="top">
    <td><div spry:region="this_week_wed"><span
    spry:repeat="this_week_wed"><a href="{@href}" class="style14
    style5 style3">{item}</a><br />
    </span></div></td>
    </tr>
    <tr>
    <td width="200"><span class="style14 style2
    style3"><strong>Thursday</strong></span></td>
    </tr>
    <tr valign="top">
    <td><div spry:region="this_week_thu"><span
    spry:repeat="this_week_thu"><a href="{@href}" class="style14
    style5 style3">{item}</a><br />
    </span></div></td>
    </tr>
    <tr>
    <td width="200"><span class="style14 style2
    style3"><strong>Friday</strong></span></td>
    </tr>
    <tr valign="top">
    <td><div spry:region="this_week_fri"><span
    spry:repeat="this_week_fri"><a href="{@href}" class="style14
    style5 style3">{item}</a><br />
    </span></div></td>
    </tr>
    <tr>
    <td width="200"><span class="style14 style2
    style3"><strong>Saturday</strong></span></td>
    </tr>
    <tr valign="top">
    <td><div spry:region="this_week_sat"><span
    spry:repeat="this_week_sat"><a href="{@href}" class="style14
    style5 style3">{item}</a><br />
    </span></div></td>
    </tr>
    <tr>
    <td width="200"><span class="style14 style2
    style3"><strong>Sunday</strong></span></td>
    </tr>
    <tr valign="top">
    <td><div spry:region="this_week_sun"><span
    spry:repeat="this_week_sun"><a href="{@href}" class="style14
    style5 style3">{item}</a><br />
    </span></div></td>
    </tr>
    </table>
    </body>
    </html>
    the webpage is located at
    http://www.harvestfamchurch.org/about_this_week.html
    I have tried everything and can't seem to find the final
    tweak to make it work.
    Thanks.

    Its because you have a JavaScript error on your page.
    in your iframe..
    var this_week_wed = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Wednesday']/items/item"{distinctOnLoad:true});
    it needs a , after your "/items/item"
    var this_week_wed = new
    Spry.Data.XMLDataSet("../../Data/this_week2.xml",
    "thisweek/day[name='Wednesday']/items/item",{distinctOnLoad:true});

  • ATT data setting for Palm Treo Pro

    I can no longer access the internet with my Palm Treo Pro.  My service provider is ATT and they were not able to provide me with the data settings.  I have searched high and low but haven't been able to find them anywhere - I'd appreciate any help.  It is a huge pain only being only to access internet/email at wifi hotspots!
    Post relates to: Treo Pro T850U (Unlocked)

    Aussie7 wrote:
    I can no longer access the internet with my Palm Treo Pro.  My service provider is ATT and they were not able to provide me with the data settings.  I have searched high and low but haven't been able to find them anywhere
    Generically, your current settings should be here:
    Start > Settings > Connections tab > Tasks tab > "Manage existing connections"
    I am a Sprint customer, so don't know what yours should say. Did they walk you through re-creating your "Modem" connection in this dialog?

  • How to enforce the encoding when opening a data set for output

    Hi,
    Just would like to know if there are any means to enforce the encoding of the dataset opened for output. What I means is that if I use the following statement to craete a dataset for output
    open dataset A for output in text mode encoding UTF-8 message MMMM.
    It seems that if the content of the output dataset contains only English (or single byte) characters, the output dataset will be in ANSI encoding irregard of the option 'encoding UTF-8' specified in the open statement.
    However, if the content contains some Asian (or double bytes) characters, the output dataset will be in UTF-8 encoding.
    I would like to know if there are any means to enfore the encoding of the output dataset in both cases to be UTF-8 as I've specified in the open statement.
    Thanks in advance,
    Francis

    You can do that by using an add-on such as:
    * NewTabURL - https://addons.mozilla.org/firefox/addon/newtaburl
    * New Tab Homepage - https://addons.mozilla.org/firefox/addon/new-tab-homepage
    Another way of opening the home page in a new tab is to middle click on the home button in the navigation toolbar.

Maybe you are looking for

  • Data retrival error in Logical Database

    Hello Gurus, I am working on a Report on ASSET ACTIVITY BY DATE RANGE . The program is copied from std. program S_ALR_87011990. The above std. program displays for the whole financial year. This is modified for a particalar period range in the new le

  • Vines won't play in my FF35, 36, 37.

    Updates didn't change anything. Clips appear to load but they won't play, all I can see is just static image. Main options like: media.mediasource.mp4.enabled media.fragmented-mp4.enabled media.fragmented-mp4.exposed media.windows-media-foundation.en

  • How much information is Diagnostics and usage supposed to capture?

    I think that the log has too much information in it. It list in plain text what apps I've downloaded that day , how many times I've accessed my camera from the lock screen, the number of times I've entered my pass code correct and not. There's lots m

  • Manage DataGrowth on File server

    Hello Experts,  We have a file server on which one of the data volume is getting grown rapidly and disk space getting full. We know there is some old data which is not at all used ,  My question is , How we can find out what data is not used and have

  • Aix6.1单机安装11.2.0.3时执行root.sh时报错

    操作系统: # oslevel -s 6100-07-04-1216 数据库:11.2.0.3 # /g01/grid/asm/root.sh Performing root user operation for Oracle 11g The following environment variables are set as: ORACLE_OWNER= grid ORACLE_HOME= /g01/grid/asm Enter the full pathname of the local b