<?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: Multiple Channels for this program? in LabVIEW</title>
    <link>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222638#M123710</link>
    <description>modified vi attached</description>
    <pubDate>Tue, 31 May 2005 16:23:39 GMT</pubDate>
    <dc:creator>Dr._Imad</dc:creator>
    <dc:date>2005-05-31T16:23:39Z</dc:date>
    <item>
      <title>Multiple Channels for this program?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222538#M123674</link>
      <description>Hi, &lt;BR /&gt;&lt;BR /&gt;I have built the following VI and was wondering if there was any way it could be modified to use multiple (at least 2 but preferably 4-6) channels.  I was trying to maybe make the same thing repeated 4 times wo the user could do what is being done now on 4 seperate channels.  I'm not sure I can do that the way I'm doing it now as it become very slow.  Thanks for any suggestions.</description>
      <pubDate>Tue, 31 May 2005 14:13:01 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222538#M123674</guid>
      <dc:creator>needtolearnfast</dc:creator>
      <dc:date>2005-05-31T14:13:01Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Channels for this program?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222552#M123680</link>
      <description>use channel syntax like&lt;BR /&gt;&lt;BR /&gt;0        channel 0&lt;BR /&gt;0,1,2    channels 0,1,2&lt;BR /&gt;0:2      channels 0 thru 2  (same as above)&lt;BR /&gt;&lt;BR /&gt;0:6      channels 0 thru 6&lt;BR /&gt;&lt;BR /&gt;0:6,7    channels 0 thru6, and 7&lt;BR /&gt;&lt;BR /&gt;0:7      channels 0 thru 7&lt;BR /&gt;etc</description>
      <pubDate>Tue, 31 May 2005 14:26:50 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222552#M123680</guid>
      <dc:creator>Dr._Imad</dc:creator>
      <dc:date>2005-05-31T14:26:50Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Channels for this program?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222557#M123683</link>
      <description>Thanks for the reply, but I understand that part.  I guess I should have been clearer.  My question really is once I get those multiple channels read in from AI Read block, is there any way to unbundle the different channels that were input and plot them on seperate graphs? Thanks.</description>
      <pubDate>Tue, 31 May 2005 14:31:09 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222557#M123683</guid>
      <dc:creator>needtolearnfast</dc:creator>
      <dc:date>2005-05-31T14:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Channels for this program?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222569#M123685</link>
      <description>just use the index array function&lt;BR /&gt;&lt;BR /&gt;Index 0  would be data of first channel in the list&lt;BR /&gt;Index 1  would be data of second channel in the list&lt;BR /&gt;Index 2  would be data of 3rd channel in the list&lt;BR /&gt;etc....</description>
      <pubDate>Tue, 31 May 2005 14:46:42 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222569#M123685</guid>
      <dc:creator>Dr._Imad</dc:creator>
      <dc:date>2005-05-31T14:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Channels for this program?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222602#M123696</link>
      <description>Hmm, that doesnt seem to be working as everything that comes out is channel 0 (ie if I have channels 0,1,0 all three will output 0, or if I have 1,1,0 all three will output 0.  I reattached the version I have now and have no idea why this is happening.  Thanks for any help.</description>
      <pubDate>Tue, 31 May 2005 15:26:32 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222602#M123696</guid>
      <dc:creator>needtolearnfast</dc:creator>
      <dc:date>2005-05-31T15:26:32Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Channels for this program?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222611#M123699</link>
      <description>The way you are indexing it is fine.&lt;BR /&gt;&lt;BR /&gt;However, do you get an error message ?&lt;BR /&gt;why do you want to scan channels twice (I am not sure if this works, never used it like that before)&lt;BR /&gt;&lt;BR /&gt;&amp;lt;&amp;lt; if I have channels 0,1,0 all three will output 0, or if I have 1,1,0 all three will output 0. &amp;gt;&amp;gt;&lt;BR /&gt;instead of using 0,1,0 just use 0,1   or 0:1  and see if it works&lt;BR /&gt;Note also for some old daq cards, channels is decending order is not allowed)</description>
      <pubDate>Tue, 31 May 2005 15:43:04 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222611#M123699</guid>
      <dc:creator>Dr._Imad</dc:creator>
      <dc:date>2005-05-31T15:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Channels for this program?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222617#M123702</link>
      <description>I don't get any error messages, but I don't understand what you mean by "scan channels twice" (I'm new to labview, this is my 3rd day using it). Thanks a lot for all your help it is much appreciated.</description>
      <pubDate>Tue, 31 May 2005 15:50:07 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222617#M123702</guid>
      <dc:creator>needtolearnfast</dc:creator>
      <dc:date>2005-05-31T15:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Channels for this program?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222618#M123703</link>
      <description>You probably cannot go in descending order, use 0:1 to get channels 0 and 1, your indexing is fine and should work.&lt;BR /&gt;&lt;BR /&gt;here are a couple of tips to make your vi run faster.&lt;BR /&gt;&lt;BR /&gt;Put the AI config and AI start outside the loop so that you are not reconfiguring them each time the loop runs, also use the open, write, close file vi's manually. put the open outside the loop at the beginning (like you already have), then write to it during each loop iteration and then put the close outside the loop. this way you are not opening, writing and closing the same file every time the loop iterates.And what he means by scanning channels twice is going from 0 to 1 and back to 0 in the same scan, scans are done going from 0 to however many channels your bord has. if you put in lets say 0:9 the scan will scan channels 0-9 in ascending order then repeat.&lt;BR /&gt;&lt;BR /&gt;just giving some input&lt;P&gt;Message Edited by jhoskins on &lt;SPAN class="date_text"&gt;05-31-2005&lt;/SPAN&gt; &lt;SPAN class="time_text"&gt;11:56 AM&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 31 May 2005 15:51:26 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222618#M123703</guid>
      <dc:creator>Joe_H</dc:creator>
      <dc:date>2005-05-31T15:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Channels for this program?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222619#M123704</link>
      <description>Could you post the version of labview you are using and the DAQ Board model #. This will help us help you.</description>
      <pubDate>Tue, 31 May 2005 15:52:49 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222619#M123704</guid>
      <dc:creator>Joe_H</dc:creator>
      <dc:date>2005-05-31T15:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Channels for this program?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222620#M123705</link>
      <description>Here you go:&lt;BR /&gt;&lt;BR /&gt;LabView 7.1&lt;BR /&gt;&lt;BR /&gt;DAQ CARD- 6036E &lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Thanks.</description>
      <pubDate>Tue, 31 May 2005 15:57:08 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222620#M123705</guid>
      <dc:creator>needtolearnfast</dc:creator>
      <dc:date>2005-05-31T15:57:08Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Channels for this program?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222632#M123709</link>
      <description>Well now we can work, in the examples find a VI called Cont Acq&amp;amp;Graph Voltage to file binary using Daqmx, Modify this as needed or just take a look at it to see how it is done, I prefer using Daqmx it is much simpler (for me).</description>
      <pubDate>Tue, 31 May 2005 16:13:09 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222632#M123709</guid>
      <dc:creator>Joe_H</dc:creator>
      <dc:date>2005-05-31T16:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Channels for this program?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222638#M123710</link>
      <description>modified vi attached</description>
      <pubDate>Tue, 31 May 2005 16:23:39 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222638#M123710</guid>
      <dc:creator>Dr._Imad</dc:creator>
      <dc:date>2005-05-31T16:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Channels for this program?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222653#M123714</link>
      <description>However, as Jhoskins suggested, use DaqMx (this is the way to go), and follow the example he pointed to.</description>
      <pubDate>Tue, 31 May 2005 16:42:25 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/222653#M123714</guid>
      <dc:creator>Dr._Imad</dc:creator>
      <dc:date>2005-05-31T16:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Channels for this program?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/727409#M332927</link>
      <description>Hi i have my VI and i wanna measure 2 channels one for EMG and one for FORCE ...i connot select both of them ...i can go one by one , how would i select them both at the same time !!!! maybe because i am using Physical channel ?&lt;BR /&gt;thank you&lt;BR /&gt;Ali&lt;BR /&gt;&lt;DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 18 Jun 2008 18:13:40 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/727409#M332927</guid>
      <dc:creator>kmous</dc:creator>
      <dc:date>2008-06-18T18:13:40Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple Channels for this program?</title>
      <link>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/727425#M332934</link>
      <description>&lt;DIV&gt;&lt;/DIV&gt;&lt;A href="http://forums.ni.com/ni/board/message?board.id=170&amp;amp;message.id=332881#M332881" target="_blank"&gt;duplicate post&lt;/A&gt;</description>
      <pubDate>Wed, 18 Jun 2008 18:38:28 GMT</pubDate>
      <guid>https://forums.ni.com/t5/LabVIEW/Multiple-Channels-for-this-program/m-p/727425#M332934</guid>
      <dc:creator>Dennis_Knutson</dc:creator>
      <dc:date>2008-06-18T18:38:28Z</dc:date>
    </item>
  </channel>
</rss>

