How do I add the channel-name to mixed signals?

Hello,
I want to save a XY-Signal to a tdm-File and import it into DIAdem.
So I merged the X- with the Y-Signal and connect the merged-signal to the "Write To Measurement File" VI.
In DIAdem I can see both signals but their name are "Untitled" and "Untitled 1". I don't know how to fix that.
If I use the low-level storage VIs, the other problem occures. I can give the X and Y-Channels my desired names, but they are in waveform - I want them as numeric channels in DIAdem.
So how can I give the mixed-signal the names
or
how can LabVIEW say to DIAdem that it is a numeric signal?
KR
Lukas
Message Edited by schmiddy on 01-11-2008 04:31 AM

Hey Lukas,
To name your dynamic signals you can see this KB "How Do I Rename Signals in Dynamic Data?".  After you name your signals appropriately, you could then merge them together and write to a tdm file.  DIAdem will then be able to read the channel names from the tdm file.  I hope this helps.
Best Regards,
Software Engineer
Jett R

Similar Messages

  • How can I add the controller name in the subject of Alarm emails? PI2.1

    How can I add the controller name in the Alarm emails in PI2.1?  This would make it much easier to scan the mailbox and see what devices are affected.

    Thanx for your reply. No, although helpful, that's not what I meant. In outlook, the first line of the header contains the full username follow by a horizontal line. Under that, the default headers like To:, From:, Subject: etc follow.
    I need that firstline printed so we know instantly from which user the email was printed (the To: field often is the same name of the sender of the mail, therefor you won't know WHO printed it...).

  • How do you add the files name to images within a PDF

    I have been searching the web trying to find an answer to this question, I am not sure what the proper term is called, but I refer to it as a 'coded pdf'. Hopefully someone knows what I am talking about and can help me find an answer!
    The end product is a coded PDF that has the file name of all the images lableled on top the image. For example, a product brochure that has 500 images, all of them would be 'coded' with their file name, to find easy in source files. - Is this an export option in InDesign, or an option somewhere in Acrobat?
    Thank you in advance for any help.
    -Melissa

    No, Melissa's asking for a filename that's searchable - text made of pixels is no use.
    Acrobat cannot apply the original image filenames after the PDF has been created as it can't read the information from anywhere. You have two options, both in InDesign:
    use smart captions to add the name of the file in a visible format beside each image.
    use accessibility tagging and place the image filename in the ALT TEXT field, then export the PDF with tags enabled (the filename will not be visible on the page but will show if you hover your mouse over the image).

  • How can I add the Display name on Directory Number

    I created a New Directory NR ( 3131 ) and I put  a  name to Alerting Name/ASCII A Name and on the Forward All
    00xxxxxx, but vhen I call the Directory Nr from a Cisco Phone i see on my display the nr from froward, how can I set up from CallManger to see  the name which I put to Alerting Name/ASCII A Name. The nr 3131 is even in the Avaya system.
    Thanks a lot

    Thanks fro y reply,
    The problem is that the nr. 3131 dosen't have a MAC/IP address, it was created in Directory Nr. not on the Device/add device, the nr was created to be able to call Avaya agents and the user to not see the personal agent nr ( 3131 ), only the name. The problem is  when a place a call the nr from forwarding appears on the display instead the name I put ( Test ).
    Thanks

  • How do you add the name of a song to a downloaded track not reccognized in the iTunes library.  I copy songs from my own CDs and want to properly identify them instead of the current "Track 02".  Thanks

    How do you add the name of a song to a downloaded track not reccognized in the iTunes library.  I copy songs from my own CDs and want to properly identify them instead of the current "Track 02".  Thanks

    Right-click the track in your library, Get Info, go to the Info tab, and type in the correct information.  When you are done, click "OK."

  • How to Add the title name for Graph in Excel

    Dear Friends
                      I am using LabVIEW 8.0.I need how to add the title name for chart in Excel.
    Jayavel
    Solved!
    Go to Solution.

    Do you have the Report Generation Toolkit? If so, the Excel Easy Graph VI has an input for that.
    If you don't have the toolkit then you will need to use ActiveX. Please do a search on how to use ActiveX (there are examples that ship with LabVIEW) to control Excel. There are also lots of example in the Excel thread. NOTE: DO NOT POST QUESTIONS IN THAT THREAD. 
    Ultimately you will need to look up the information in MSDN. 

  • Aperture adds the same name to all new locations, how do I delete the name but not the address?

    Aperture adds the same name to all new locations, how do I delete the name but not the address?

    It's easy to rename each unit.  When you connect your iPad and it syncs, the unit will appear on the left of the iTUnes screens just click on the unit there and you can rename it.  You should do this immediately so you can see which unit was backed up by it's name. You can sync as many decices as you want in one iTunes library and you can even share Apps as long as you're going to sync both from teh same iTunes account.  My household has 2 iPad 2s and we share our apps, and we also share downloaded books, magazines, music, etc.......

  • How do I add the customer's name to Workflow Notification email subject line?

    How do I add the customer's name to Workflow Notification email subject line?
    I'm expecting that I need to add a tag, but I'm not sure what the correct tag would be, I have tried a few but it just writes the tag I inserted and not the customer's name.
    Thanks

    This is something you can not add at the moment. You can change the layout a bit of workflow notifications from the system but you can not change the subjects at this time to render a system tag like that.

  • How can i add a file name(the text of the file name) as a child node to existing node in a treeView1 ?

    bool exists = false;
    TreeNode newNodeParsed = null;
    TreeNode rootNode = treeViewMS1.Nodes[0];
    TreeNode nextNode = rootNode;
    string f = Path.GetFileName(txtUploadFile.Text);
    TreeNode subnode = new TreeNode(txtDir.Text);
    TreeNode filename = new TreeNode(f);
    if (!txtDir.Text.Contains("/"))
    foreach (TreeNode node in rootNode.Nodes)
    if (node.Text == txtDir.Text)
    exists = true;
    break;
    if (exists == true)
    subnode.Nodes.Add(f);
    else
    rootNode.Nodes.Add(subnode);
    subnode.Nodes.Add(f);
    The rootNode is the root directory in the treeView1
    subnode is a node inside the root. For example the subnode name is manuelisback
    I'm checking if the subnode exist i want to add the file for example (lightning1.jpg) to be under subnode.
    If the subnode is not existing add the subnode to the root and then add the file name lightning1.jpg under the subnode.
    But the file name is never added under the subnode:
    I added manualy the lightning1.jpg under test.
    But the lightning1.jpg also should be added to be under manuelisback. There should be two lightning1.jpg here.
    One under manuelisback and one under test. The one under test i added manualy from my ftp server.
    But the one i want to be under manuelisback i'm trying to add from my program and it dosen't add it to there.
    And when i'm using a breakpoint i see on subnode the text manuelisback and i see on f the text lightning1.jpg

    If I understand your question correctly, you might want to try changing:
    if (!txtDir.Text.Contains("/"))
    foreach (TreeNode node in rootNode.Nodes)
    if (node.Text == txtDir.Text)
    exists = true;
    break;
    if (exists == true)
    subnode.Nodes.Add(f);
    else
    rootNode.Nodes.Add(subnode);
    subnode.Nodes.Add(f);
    to something like:
    if (!txtDir.Text.Contains("/"))
    foreach (TreeNode node in rootNode.Nodes)
    if (node.Text == txtDir.Text)
    subnode = node;
    exists = true;
    break;
    if (exists == true)
    subnode.Nodes.Add(f);
    else
    rootNode.Nodes.Add(subnode);
    subnode.Nodes.Add(f);
    rootNode.Nodes.Add(f);
    It would be greatly appreciated if you would mark any helpful entries as helpful and if the entry answers your question, please mark it with the Answer link.

  • Messenger Express: How do I add the Directory Server to the address book search tool?

    In Messenger Express (ME) how do I add the Directory Server (DS) to the address book
    search tool?
    <P>
    Edit the globals.pl file. Look for a line similar to: <BR>
    @dirservers = ('MyCompany::phonebook.foo.com::o=FooCorp.,c=US','Four11 Directory::ldap.four11.com::');
    <P>
    Add an entry to the list. The list is comma delimited and each entry is a
    string. The string contains three fields, delimited by a double colon (::). The
    first field is the name you want to appear in the User Interface (UI). The second is
    the hostname of the DS and the third is the Distinguished Name (DN) to use when searching.
    <P>
    Please note, Messenger Express is part of the Messaging Server. For more
    information on Messenger Express, please see the release notes at
    http://home.netscape.com/eng/server/MExpress/relnotes.htm

    You can't add a new contact to specific group and there is no app for this. 3rd party apps don't have access to private iPhone APIs with security concerns being a primary reason, which such a function would require.

  • How do I add the external headphones to SystemSetup- Tone?

    Inside Systemsetup->Tone I see only one option: integrated sound. I have no other options to select... How do I add the external headphones (supported by the MacBoock) to the selection list?

    Hello,
    In a Finder Window navigate to your Boot drive->Users->Your User Name, drag the house to the right side of the Dock by Trash.
    This is from 10.5.87, but 10.6 should be similar enough...

  • How do I add the FaceTime icon to the iPhone desktop

    How do I add the FaceTime icon to the iPhone desktop

    Hello,
    In a Finder Window navigate to your Boot drive->Users->Your User Name, drag the house to the right side of the Dock by Trash.
    This is from 10.5.87, but 10.6 should be similar enough...

  • How do i add the home icon to the dock

    How do i add the home icon to the dock

    Hello,
    In a Finder Window navigate to your Boot drive->Users->Your User Name, drag the house to the right side of the Dock by Trash.
    This is from 10.5.87, but 10.6 should be similar enough...

  • How do I add more channels to my input source?

    I'm trying to record my son's band on a iBook in the rehearsal studio, and would like to also do this type of recording on my iMac here at home, so how do I add more channels to my input source for simultaneous multi-track recording. Right now I am only getting 2 mono and 1 stereo channels.
    Ultimately I would like to add the maximum amount (probably 8 tracks), and still be able to record simultaneously with at least one guitar, one bass, one vocal mike, and the drums on one mike...
    According to Hangtimes/Garage Door website, this is a possibility, but first I must create more channels.
    Please help. THANKS...

    shidoobie wrote:
    My input source is a Tascam US-144 USB Interface that has 2 mic in's, and 2 line in's for guitar/bass.
    I would like to separately record each input on different channels simultaneously.
    You might also want to check out the M-Audio NRV10, which is a hybrid analog mixer + firewire audio interface (with I think around 10 simultaneously available separate channels), which makes it very "band friendly" for both rehearsal and recording.

  • How do I find the channels palette in PSE 8?

    Hello,
    I am using Photoshop Editor 8 and attempting to create retro-style/technicolor images using the channels palette and creating greyscale images having gone through red, green and blue filters, and then colorise them (As seen here: http://www.youtube.com/watch?v=wJQj2ykF7fs) . How can I find the channels palette?
    Thank you for your help!

    Elements doesn't do channels. That video must be about Photoshop. However, you can add a channels panel to PSE using either Grant's Tools (free):
    http://www.cavesofice.org/~grant/Challenge/Tools/index.html
    or Elements+ from simplephotoshop.com (inexpensive, does more other things than Grant's tools).

Maybe you are looking for

  • HT3529 How do you turn off the voice in auto correct when messaging?

    How do you turn off the voice when trying to write a message to someone?

  • Icloud settings

    16 Views 1 Reply Latest reply: Sep 28, 2014 3:12 PM by a brody Level 1 (0 points)  raeofsunshinSep 28, 2014 8:27 AM I asked a few days ago for advice on upgrading my imac to yosemite the general consensus was not to do this as I would then have probl

  • Can iTouch read PDF and MS doc like word, execl, ppt ?

    Can iTouch support PDF, office doc ? Any application required to be installed?

  • I phone 4 gets no service anywhere... why???

    I Upgraded the i phone 4 to the ios 5 and i get NO service anywhere even when im at home im connected to wi fi and every 1 else has service but me..... why is that i had the i phone 3g before and it worked great!! but ever since i upgraded and took m

  • Need help to retrieve data from my Treo 680

    Hi All, Last night, while charging my Treo 680 phone, it hanged. Therefore, I do a reset but removing the battery and put it back again. After the restart, all my text message, photos and video files are gone. However, my lists of memo and the wallpa