How can I increment channels on 34970A DAQ with the 34908A 40 channel mux using the LabVIEW instrument library.

I have my external multimeter reading a voltage on a channel but with my LabVIEW program, I am trying to increment the channels so I can see the voltage on each of the 40 channels. Some help would be greatly appreciated.
Thanks in advance,
Jason

Dennis,
The channels vi that you attached to your response worked perfectly. Thank-you very much for your help. I am completing this LabVIEW vi as a workterm project as I am an electronics student at a local college in Newfoundland. I will be sure to add your name to the list of acknowledgements in the report.
Thanks again,
Baird

Similar Messages

  • My ipod is somehow synced to another library, because I plugged the charger to a wall. How can I sync my ipod shuffle back to the original Itunes library without erasing my current data in the Ipod shuffle?

    My ipod is somehow synced to another library, because I plugged the charger to a wall. How can I sync my ipod shuffle back to the original Itunes library without erasing my current data in the Ipod shuffle?

    ",the owner sold the ipod without clearing the songs and since the songs were not puchased from the itunes store then i believe i now own the songs"
    Not true at all.
    It does not matter where the songs came from, they are not yours and the previous owner does not own the right to distribute them to others.
    The law is the same with downloads and cds and any other medium.

  • How can we handle browser settings while dealing with the security ?

    Hi ,
    how can we handle browser settings while dealing with the security ?When we configured security in web.xml , during the first request the container is asking for the authentication credentials once they are provided it go's on. but when the user gives a fresh request from the second window within the same browser that time it is not asking for authentication. How can we overcome this.Is there anything to do with server configurations?
    How can we make the container no to keep the things or act like session?

    Ya... I am taking a small example need not happen always but a kind of possibility i am thinking off.
    once the user sign out and just left without closing the browser and a friend (suppose not a good friend ... just kidding...) of that user may open the same jsp or file .This time the security is breached. If that feature or property exists....
    I know what you might say ... the user will log-out before leaving where a programer might invalidate the session at the time of log out.
    Consider the case of a bad Programing or just a programer might forget to invalidate,At that time as a application administrator how can he solve that issue.
    Thanks.......
    Edited by: user8483670 on Jun 6, 2011 1:08 AM
    Edited by: user8483670 on Jun 6, 2011 1:09 AM

  • I am trying to connect my fathers ipod touch to itunes on my computer, how can i sync itunes on my machine with the ipod such that his songs don't get deleted and i could add new songs to it (mp3 on my computer)

    I am trying to connect my fathers ipod touch to itunes on my computer, how can i sync itunes on my machine with the ipod such that his songs don't get deleted and i could add new songs to it (mp3 on my computer)

    You cannot merge accounts.  Frequently asked questions about Apple ID - http://support.apple.com/kb/HE37
    One computer using multiple iTunes Store authorizations - http://support.apple.com/kb/HT1206

  • HT4743 I just purchased an iTunes TV show and it successfully downloaded. It is now saying that I do not have the proper version of QuickTime on this version of iTunes (10.6.3). How can a show I purchased be incompatible with the latest version of iTunes?

    I just purchased an iTunes TV show and it successfully downloaded. It is now saying that I do not have the proper version of QuickTime on this version of iTunes (10.6.3).
    How can a show I purchased be incompatible with the latest version of iTunes?
    I want a refund, but I can't even figure out how to request one through support. Super frustrated and long time Apple customer.

    After a day of trying, both iTunes and my Apple TV are telling me that the episodes of Scooby Doo I purchased are incompatible due to QuickTime. I still don't understand how I purchased something from iTunes that doesn't work with iTunes.
    the exact error I receive when I try to play an episode is the following:
    "This movie requires QuickTime, which is not supported by this version of iTunes."
    Any advice would be great!

  • HT3775 How can i play my avi formatted movies with the new mac OSX 10.9.2 update?

    How can i play my avi formatted movies with the new mac OSX 10.9.2 update?

    Try using VLC or installing both QuickTime 7 and Perian. Nothing will work with all AVIs; some of them require codecs not available for Mac OS X.
    (105507)

  • How can I get "IMAQ Line Fit" stable (with the same points)

    How can I get "IMAQ Line Fit" stable (with the same points)
    I my vision applications I use a lot off times "IMAQ Line Fit"
    some times the results are not Stable.
    See vi and word document attached.
    When I take the same points but in a other order (sort)
    then suddenly all points are used.
    In this case I was looking for a edge in vertical direction (Y).
    I found the points but "IMAQ Line Fit" did not function well.
    I tried changing all settings like pixel radius and minimum score and
    also threshold and so on. But no result.
    Then I sorted the points reversed and that worked. See vi.
    I use labview Labview 8.6.0 and IMAQ machine vision.
    Maybe this problem is solved in a newer version.
    Please let me know.
    Thanks
    Attachments:
    TEST-imaq-line-fit-86.vi ‏169 KB
    IMAQ-Fit-Line-Problem-86.doc ‏230 KB

    Thank You for your reaction Hossein,
    This "one application" uses "Line fit" about 20 000 000 times a day.
    about 200 will go wrong. With your setting the the "Line fit" for this occasion will work but others will go wrong.
    A algorithm should be:
    1e Stable, when using the same points and settings the result MUST be the same. How the points are sorted should not matter.
    2e Accuracy
    3e Speed
    4e Testing. Is very difficult but al least close points and the same points and sorting ... should be done
    NI now as made a " IMAQ Line Fit" Problem CAR (Corrective Action request) 298016.
    so in the future there will be a update.
    In the mean while a made a line fit which uses Bisquare option from Linear Fit.vi :
      from C:\Program Files\National Instruments\LabVIEW 8.6\vi.lib\analysis\6fits.llb
    This is a temporary fix because "IMAQ Fit Line VI" is not so stable.
    Because outliers should be rejected only Bisquare does this reasonable.
    This program does NOT USE "Minimum Score" and "Pixel Radius"
    Valid fit = When there are enough points within Outlier_Distance.
    Algorithm steps:
    - Determine if line is more horizontal then vertical, Compare DeltaX with DeltaY
    - If DeltaX <= DeltaY then SWAP X Y and later Swap back
    - Sort Points at on X value
    - First : Bisquare Linear Fit
    - Calculate distances to the found line for all points
    - Inliers: Points within Outlier_distance
    - Outliers: Points outside Outlier_Distance
    - Only use Inlier Points
    - Check again if DeltaX < DeltaY then SWAP X Y later SWAP back again
    - Second : Bisquare Linear Fit only with the Inlier Points
    - Results are from the second fit
    Warning : This Program is Not so accurate and Not so fast
    See attachments it is in labview 8.6
    If some has a improvement please let me know.
    Thanks
    Attachments:
    svi_fit_line_Bsquare_and_draw.vi ‏18 KB
    Fit_Line_Bisquare_Linear.vi ‏40 KB

  • How can I get my document to save with the rotated view last used?

    How can I get my document to save with the rotated view last used? 

    Possible with Adobe Acrobat, not Adobe Reader.

  • So I recently bought 3 new songs, and they won'y show up on my main iTunes Library page or under the artist, but they show up under purchased.  How can I get them to show up under the artist/ main library page?

    So I recently bought 3 new songs, and they won'y show up on my main iTunes Library page or under the artist, but they show up under purchased.  How can I get them to show up under the artist/ main library page?

    Logging out of itunes store and logging in again has worked for some people

  • How can I increment a dynamic value each time the request is sent?

    One of my requests is passing a sequence number which gets incremented every time the request is sent. The sequence number is incremented in javascript on the client; the html looks something like this: target=target+"&sequenceNumber="+sequenceNumber++;
    How can I simulate that behavior in eload?

    In this case all we needed was a randomly generated incrementing number, so we used the timestamp function available within Navigation Editor which is lightweight and easy to use.
    Open Navigation Editor (Ctrl + E) >
    Select the Query String (or Post) parameter which should be randomly incremented and change its Type in the properties window to function. The function name will auto populate to TimeStamp.
    Save the script and run...

  • How can I register channels imported using DataFileLoad function in DIAdem 2012?

    Hallo,
    I would like to import data from Excel into the DIAdem 2012.
    I newly use DataFileLoad and ufi file to define import plugin.
    But when I want to copy a the imported channels to another group, I get err: The Channel argument of the AddChannel method must be IChannel.
    How can I register/convert/refersh channels, so I can work with them?
    I'm showing code sample I took from standard example collection, from: "Loading Excel Files with a DataPlugin", script file A_172132_ExcelDataPlugin.vbs
    Note: to get to worky my example you have to set proprely used paths
    If Not ItemInfoGet("sPathDocuments") Then
    Call GlobalDim("sPathDocuments")
    Call GlobalDim("sPathData")
    End If
    sPathDocuments = CurrentScriptPath
    sPathData = CurrentScriptPath & "..\Data\"
    call PrepareAndLoadDataset
    sub PrepareAndLoadDataset()
    Call Data.Root.Clear()
    If Not FileFilterExist("A_172132_Example") Then
    Call Navigator.RegisterDataPlugin(sPathDocuments&"A_172132_Example.uri",True)
    End If
    set MyGroup = DataFileLoad(sPathData & "A_172132.xlsx", "A_172132_Example","")
    set MyTemp = Data.Root.ChannelGroups.Add("temp")
    Call MyTemp.Channels.AddChannel(MyGroup.Item(1).ChannelGroups(1).Channels(1))
    end sub
    Thank you for advance.
    Radek
    Solved!
    Go to Solution.

    Hello Codr,
    Your script works fine on with my DIAdem 2012. I just defined "Dim MyGroup, MyTemp"
    The result is a new channel group with one channel. The channel is the first channel of the first group of the loaded dataset.
    In case you would like to register the Excel file (and not load it) you need toexpand the copied channel. This looks like this:
    sub PrepareAndLoadDataset()
    Call Data.Root.Clear()
    If Not FileFilterExist("A_172132_Example") Then
    Call Navigator.RegisterDataPlugin(sPathDocuments&"A_172132_Example.uri",True)
    End If
    dim MyGroup, MyTemp, oChn
    set MyGroup = DataFileLoad(sPathData & "A_172132.xlsx", "A_172132_Example","Register")
    set MyTemp = Data.Root.ChannelGroups.Add("temp")
    set oChn = MyTemp.Channels.AddChannel(MyGroup.Item(1).ChannelGroups(1).Channels(1))
    call ChnValExpand(oChn)
    end sub
    Greetings
    Walter

  • How can I identify which albums are associated with a specific picture.  I used to click on the picture and see the albums but don't know how to do it in 13?

    I keep pictures in Albums, specifically by year and then other topic albums. As a result some pictures are in several albums. Sometimes they are assigned in error.  I used to be able to click on a picture and see not only the tags but the albums associated with the picture.  How can I see which albums are assigned to a picture?

    Are you referring to the yellow text box that pops up like this?
    If it is those are called tooltips or anchor titles.  Cyclosaurus has posted script to block them: removing rollover html detail box: Apple Support Communities.
    OT

  • How can I make a transparent text marking with the courser in InDesign CC?

    How can I mark a Text with the Courser and see things, that are behind it (next layer…)
    Of course, it works at Version CS5.5.
    I havn't found any preference for this problem.
    Thx 4 help

    I'll think there was a missunderstanding. So i've made screenshots of the problem.
    Here in CS5.5:
    https://www.dropbox.com/s/bxwuqjh9n8a2nr7/Screenshot%202013-11-20%2009.09.54.png
    Here the same in CC:
    https://www.dropbox.com/s/8x9kfsmf1vlf7k3/Screenshot%202013-11-20%2009.09.38.png
    Sometimes I have to reconstruct old documents and have to make small modifications.

  • How can I send a personalized mass email with the mail app?

    I need to be able to send a mass email where the "Dear So-and-so" is personalized for each recipient. Is it possible to do this with Mail? If so, how can I accomplish that?

    you'll have to use a feature called "Mail Merge"
    it works with either MS Word + Outlook
    http://office.microsoft.com/en-ca/mac-word-help/use-mail-merge-to-create-a-form- letter-RZ103895371.aspx
    or
    Pages + Mail
    http://support.apple.com/kb/VI129

  • How can I set up my iPad 2 with the I cloud if we set up a different apple I'd than then one we are using?? Initial setup we used a different apple Id.

    Initially my wife set up our I pad and Mac with a certain apple ID. I purchased the I phone4 and setup my own apple ID and now want to sync all of our other products with the new apple ID, but am having problems setting this up. Please advise on how I can remove her initial apple ID from everything and set up with our new apple ID so we can sync with the I cloud

    Settings --> Store --> Apple ID
    Settings --> iCloud --> Account

  • How can I resend an IPhoto e-mail with the wrong address?

    How can I resend an IPhoto e-mail that was returned because of an error I made in the address?

    ImagineThat:
    Welcome to the Apple Discussions. There is a 3rd party application, pdf-RecoverPro, that will let you lock the file to printing, changing, etc. You set two passwords, one to let the user view it and one to unlock the restricted features. Just provide the first password and send the file. You can try the demo version. It just saves one page in demo mode.
    Do you Twango?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've written an Automator workflow application (requires Tiger), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.

Maybe you are looking for