<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Intensity Chart Problem in LabVIEW</title>
    <link>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3620012#M1015259</link>
    <description>&lt;P&gt;Would you please give me your example not just default examples with real time timings in it. I would be very grateful&lt;/P&gt;</description>
    <pubDate>Fri, 28 Apr 2017 06:40:23 GMT</pubDate>
    <dc:creator>HelloGuys</dc:creator>
    <dc:date>2017-04-28T06:40:23Z</dc:date>
    <item>
      <title>Intensity Chart Probelm</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3619476#M1015083</link>
      <description>&lt;P&gt;Hello, i am using intensity chart, and my x axis should be real time. I tried to make property node and the minimum i put 0 and maximum 86400, for 24 hour. Also i selected from properties to show x axis with relative time. But labview is giving me memory error when i am trying to create array with 86400 indexes and 6000 colums to fill intensity chart. Is there any possible way i can remake this chart using minutes not seconds as increment points. So i can make lower array without errors.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2017 10:46:16 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3619476#M1015083</guid>
      <dc:creator>HelloGuys</dc:creator>
      <dc:date>2017-04-27T10:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: Intensity Chart Probelm</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3619492#M1015095</link>
      <description>&lt;P&gt;Hi guy,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;FONT color="#FF0000"&gt; trying to create array with 86400 indexes and 6000 colums&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Lets do some simple math: 86400*6000 = 518400000 = 518.4 million elements…&lt;/P&gt;
&lt;P&gt;When each element needs 8 bytes (DBL value!) you will need 518.4e6*8 = 4147.2e6 bytes = 3955.1 MiB (or roughly 4GiB)! Using 32bit LabVIEW you cannot handle this much memory!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using 64bit LabVIEW you could handle this memory reqirements - but is it really needed to put 500e6 data elements into an intensity chart displaying maybe 400*400 pixels???&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2017 11:23:21 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3619492#M1015095</guid>
      <dc:creator>GerdW</dc:creator>
      <dc:date>2017-04-27T11:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: Intensity Chart Probelm</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3619532#M1015108</link>
      <description>&lt;P&gt;Yes, i understand it's imposible to create , but then why is intensity chart designet that way , so you need milion element array to show 24 hour? Maybe there is an easier way to make that happen,&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2017 12:21:07 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3619532#M1015108</guid>
      <dc:creator>HelloGuys</dc:creator>
      <dc:date>2017-04-27T12:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: Intensity Chart Problem</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3619534#M1015110</link>
      <description>&lt;P&gt;Hi guy,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;FONT color="#FF0000"&gt;Yes, i understand it's imposible to create&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Ok, fine.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;FONT color="#FF0000"&gt;why is intensity chart designet that way , so you need milion element array to show 24 hour?&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Wrong…&lt;/P&gt;
&lt;P&gt;You would need an array of this size to keep ALL data for the last day in memory - but nobody is forcing you to keep ALL THIS DATA in memory!&lt;/P&gt;
&lt;P&gt;You could also input one column of data (6000 elements) per second, while setting the history size to reasonable size (like 3600 entries)…&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;FONT color="#FF0000"&gt; Maybe there is an easier way to make that happen,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Yes, sure.&lt;/P&gt;
&lt;P&gt;Decimate your data into reasonable array sizes. It doesn't make sense to plot 500million points in a chart only showing less than 1million pixels!&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2017 12:30:58 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3619534#M1015110</guid>
      <dc:creator>GerdW</dc:creator>
      <dc:date>2017-04-27T12:30:58Z</dc:date>
    </item>
    <item>
      <title>Re: Intensity Chart Problem</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3619562#M1015125</link>
      <description>&lt;P&gt;And what about for example i reached 18:00 o clock, with seconds it's something like 50000 seconds. so i if i need to show data for 18:00 i should have array sized with 50000 indexes, or i understand wrong? I mean let's say you want to show data from 17:00 to 18:00 then for 17:00 it's represented as 40000 indexes, and 50000 for 18:00 . So you need those big arrays, anyways.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2017 13:30:35 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3619562#M1015125</guid>
      <dc:creator>HelloGuys</dc:creator>
      <dc:date>2017-04-27T13:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: Intensity Chart Problem</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3619697#M1015170</link>
      <description>&lt;P&gt;An intensity chart takes one column (1D array) with each update and the total memory is determined by the history size. So, just update 1/minute and adjust dx accordingly.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2017 16:07:56 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3619697#M1015170</guid>
      <dc:creator>altenbach</dc:creator>
      <dc:date>2017-04-27T16:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: Intensity Chart Problem</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3620012#M1015259</link>
      <description>&lt;P&gt;Would you please give me your example not just default examples with real time timings in it. I would be very grateful&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2017 06:40:23 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3620012#M1015259</guid>
      <dc:creator>HelloGuys</dc:creator>
      <dc:date>2017-04-28T06:40:23Z</dc:date>
    </item>
    <item>
      <title>Re: Intensity Chart Problem</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3620017#M1015261</link>
      <description>&lt;P&gt;Hi guy,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;which example are you referring to? We only gave suggestions/comments on your questions!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What about attaching &lt;STRONG&gt;&lt;U&gt;your&lt;/U&gt;&lt;/STRONG&gt; VI? It's the VI &lt;U&gt;&lt;STRONG&gt;YOU&lt;/STRONG&gt;&lt;/U&gt; have problems with!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2017 06:52:07 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3620017#M1015261</guid>
      <dc:creator>GerdW</dc:creator>
      <dc:date>2017-04-28T06:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: Intensity Chart Problem</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3620027#M1015264</link>
      <description>&lt;P&gt;Here is the vi i attached, can we make it work with real time data, wtihout full memory error.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2017 07:08:06 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3620027#M1015264</guid>
      <dc:creator>HelloGuys</dc:creator>
      <dc:date>2017-04-28T07:08:06Z</dc:date>
    </item>
    <item>
      <title>Re: Intensity Chart Problem</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3620031#M1015267</link>
      <description>&lt;P&gt;Hi guy,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;your VI runs just fine without any "memory full" message…&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Again I recommend NOT to display 86400×6000 data elements in your 300×200 pixel wide chart. IT DOES NOT MAKE SENSE!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="padding-left: 30px;"&gt;&lt;FONT color="#FF0000"&gt;can we make it work with real time data, wtihout full memory error.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;Yes, sure.&lt;/P&gt;
&lt;P&gt;Again I repeat the suggestion given before: decimate the data to reasonable array sizes…&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2017 07:29:50 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3620031#M1015267</guid>
      <dc:creator>GerdW</dc:creator>
      <dc:date>2017-04-28T07:29:50Z</dc:date>
    </item>
    <item>
      <title>Re: Intensity Chart Problem</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3620037#M1015268</link>
      <description>&lt;P&gt;Okey thanks it might be something wrong with my pc&lt;/P&gt;</description>
      <pubDate>Fri, 28 Apr 2017 07:41:43 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3620037#M1015268</guid>
      <dc:creator>HelloGuys</dc:creator>
      <dc:date>2017-04-28T07:41:43Z</dc:date>
    </item>
    <item>
      <title>Re: Intensity Chart Problem</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3620529#M1015442</link>
      <description>&lt;P&gt;Your use of an intensity chart makes no sense here. Your chart indicator never holds more than the last 128x50 values, everything else gets discarded immediately, so why are you creating these gigantic arrays? (your chart history size is 128 columns, the default for an intensity chart).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my opinion you have absolutely no idea how an intensity chart should be used. What kind of data are you trying to display. Where is it coming from and in what form and what does it represent? What do you want to see during the run and in the end?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As a first step, try to understand the difference between a chart and a graph.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 29 Apr 2017 04:40:56 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Intensity-Chart-Probelm/m-p/3620529#M1015442</guid>
      <dc:creator>altenbach</dc:creator>
      <dc:date>2017-04-29T04:40:56Z</dc:date>
    </item>
  </channel>
</rss>

