<?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: Find the corresponding element in 2D Table in LabVIEW</title>
    <link>https://ni.lithium.com/t5/LabVIEW/Find-the-corresponding-element-in-2D-Table/m-p/2517064#M765375</link>
    <description>&lt;P&gt;Use index array to get column A. Use the "Array Min &amp;amp; Max" function to get the minimum value in column A, and it will also return the corresponding index at which that minimum is found. Then, retrieve that same index from column B.&lt;/P&gt;</description>
    <pubDate>Wed, 07 Aug 2013 20:19:24 GMT</pubDate>
    <dc:creator>nathand</dc:creator>
    <dc:date>2013-08-07T20:19:24Z</dc:date>
    <item>
      <title>Find the corresponding element in 2D Table</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Find-the-corresponding-element-in-2D-Table/m-p/2517054#M765373</link>
      <description>&lt;P&gt;Hello everybody,&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;I have probleme that I can't fix,&lt;/P&gt;
&lt;P&gt;In my VI I have a table of two column of 5000 element in each column.&lt;BR /&gt;In the column A, I manage to find the min and the max, What I want to do it to find the corresponding value of this minimum in the column B.&lt;BR /&gt;For example:&lt;/P&gt;
&lt;P&gt;A &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;B&lt;/P&gt;
&lt;P&gt;1 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 5&lt;BR /&gt;25 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 0.87&lt;BR /&gt;3 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;BR /&gt;4 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1&lt;BR /&gt;4 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 98&lt;BR /&gt;5 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 2&lt;BR /&gt;0.2 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;55&lt;BR /&gt;9 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;0.1&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The min of A is 0.2 and what I want it to obtain B=55 in this case.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you in advance for your help.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2013 20:17:07 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Find-the-corresponding-element-in-2D-Table/m-p/2517054#M765373</guid>
      <dc:creator>sf1</dc:creator>
      <dc:date>2013-08-07T20:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Find the corresponding element in 2D Table</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Find-the-corresponding-element-in-2D-Table/m-p/2517064#M765375</link>
      <description>&lt;P&gt;Use index array to get column A. Use the "Array Min &amp;amp; Max" function to get the minimum value in column A, and it will also return the corresponding index at which that minimum is found. Then, retrieve that same index from column B.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2013 20:19:24 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Find-the-corresponding-element-in-2D-Table/m-p/2517064#M765375</guid>
      <dc:creator>nathand</dc:creator>
      <dc:date>2013-08-07T20:19:24Z</dc:date>
    </item>
    <item>
      <title>Re: Find the corresponding element in 2D Table</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Find-the-corresponding-element-in-2D-Table/m-p/2517102#M765383</link>
      <description>&lt;P&gt;Here's a visual representation of Nathan's example:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;IMG src="https://ip1.i.lithium.com/eb0d27a3b990cce8c449c5e250651e2c2824da32/68747470733a2f2f6e692e6c69746869756d2e636f6d2f74352f696d6167652f736572766572706167652f696d6167652d69642f31313730383869313135463643324538374337313046442f696d6167652d73697a652f6f726967696e616c3f763d6d70626c2d312670783d2d31" border="0" alt="Example.png" title="Example.png" align="center" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2013 21:02:33 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Find-the-corresponding-element-in-2D-Table/m-p/2517102#M765383</guid>
      <dc:creator>Eric1977</dc:creator>
      <dc:date>2013-08-07T21:02:33Z</dc:date>
    </item>
    <item>
      <title>Re: Find the corresponding element in 2D Table</title>
      <link>https://ni.lithium.com/t5/LabVIEW/Find-the-corresponding-element-in-2D-Table/m-p/2517108#M765385</link>
      <description>&lt;P&gt;Thank you all for your fast answer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks to you my VI works perfectly&amp;nbsp;&lt;img id="smileyvery-happy" class="emoticon emoticon-smileyvery-happy" src="https://ni.lithium.com/i/smilies/16x16_smiley-very-happy.gif" alt="Smiley Very Happy" title="Smiley Very Happy" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2013 21:06:09 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/Find-the-corresponding-element-in-2D-Table/m-p/2517108#M765385</guid>
      <dc:creator>sf1</dc:creator>
      <dc:date>2013-08-07T21:06:09Z</dc:date>
    </item>
  </channel>
</rss>

