Does anyone has a AM modulator demodulator sample for SSB & DSB?

please i need an AM modulator demodulator labview application for DSB and SSB for a telecommunication project. i will be thankfull if anyone can help me

Hello,
You can find examples for modulations on the website, but you have to install the Modulation Toolkit for running...as GovBob mentioned it.
These are some links for examples:
- SSB generation: http://zone.ni.com/devzone/cda/epd/p/id/5599
- SSB mod and demod: http://zone.ni.com/devzone/cda/epd/p/id/5741
- MT: http://sine.ni.com/nips/cds/view/p/lang/en/nid/12855
Peter
Peter Vago
AE Hungary

Similar Messages

  • I want to write a java program that can add a user to a role or sub role to the Profile Database in iPlanet Portal Server 3.0. Does anyone has any idea or a sample program do such thing. Thanks, Tommy

    I want to write a java program that can add a user to a role or sub role to the Profile Database in iPlanet Portal Server 3.0. Does anyone has any idea or a sample program do such thing? Thanks, Tommy

    // create the user profile, get the handle back,
    // and set the membership profile attributes.
    ProfileAdmin newProfile = null;
    try {
    // the users profile name is the domain      
    // he belongs to plus their userName
    // you will request.domain if your doing this from a servlet, domain_name is the domain_name the user belongs too
    String profileName = domain_name + "/" + user;
         if (debug.messageEnabled()) {
    debug.message("creating profile for " + profileName);
    // create the user profile object
    newProfile = ProfileManager.createProfile(
    getSession(), profileName ,Profile.USER);
    UserProfile userProfile = (UserProfile)newProfile;
         // set the role the user is a member of. Default is to set
         // the users to the default role of the domain they surfed to
         StringBuffer roleName = new StringBuffer(64);
    // request.domain instead of domain_name if your doing this from a servlet ..
    Profile dp = getDomainProfile(domain_name);
    roleName.append(dp.getAttributeString("iwtAuth-defaultRole"));
         if (debug.messageEnabled()) {
    debug.message("setting role for " + user + " = " + roleName);
    userProfile.setRole(roleName.toString());
    newProfile.store(false);
    } catch (ProfileException pe) {
         debug.error("profile exception occured: ",pe);
    return;
    } catch (ProfileException pe) {
         debug.error("login exception occured: ",le);
    return;
    HTH ..

  • Does anyone has experience or working vi's for controlling an IoTech Daqbook2000?

    I'm trying to connect to a DaqBook2000 system (via TCP/IP) but the provided vi's do not work. (error 113). Now I want to try to directly send command string but i need the right syntax, which is only given in Delphi, and that is not my strongest point.

    You might want to try first running the TCP/IP communication examples that ship with LabVIEW. They are in Find Examples -> Networking -> Data Client.vi and Data Server.vi. You could at least eliminate the problem with the provided VIs and just focus on getting the syntax correct.

  • Urgent help!  does anyone has sample code to do encry in c & decry in java

    Does anyone has a very simple code to encrypt a string in c (openssl for example) and then decrypt the same string in java?
    it should be very simple but i just can get the ball rolling. i always get different data (even in hex string representation) using the same key and plain text (all in hex) to even just do encryption (not even decryption yet). To my understanding, DES is just bits manipulation. So the output bit pattern should be the same regardless C or Java, right?
    for example, in openssl, when i do ecb:
    the key:
    0123456789ABCDEF
    the plain text:
    0101010101010101
    the in:
    0101010101010101
    the out:
    B4FD231647A5BEC0
    but doing the same in java i got
    3A2EAD12F475D82C as the encryption output
    It is very strange.
    Hope someone could help me.
    Thanks
    -- Jin

    whew! i finally get the base64 working. Here is my data from openssl run using DES with ECB mode and no padding: (the des_ecb_encrypt function is des/ecb/nopadding, right?)
    thanks alot
    -- jin
    0123456789ABCDEF
    the key in base64 encoding is:ASNFZ4mrze8=
    the plaintext in hex:
    0101010101010101
    the plaintext in base64 encoding is:AQEBAQEBAQE=
    the encrypted output in hex:
    B4FD231647A5BEC0
    the encrypted output in base64 encoding is:tP0jFkelvsA=
    the decrypted text in hex:
    0101010101010101
    the decrypted text in base64 encoding is:AQEBAQEBAQE=
    here is the code. see if you see the same thing. it works fine alone but just not the same result i use the SUN JCE ... that is the frustration part.
    #include <stdio.h>
    #include <stdlib.h>
    #include <string.h>
    #include <sys/types.h>
    #include <ctype.h>
    #include <openssl/des.h>
    #define Assert(Cond) if (!(Cond)) abort()
    static const char Base64[] =
            "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
    static const char Pad64 = '=';
    int main(int argc, char *argv[])
            int i;
            des_cblock in,out,outin;
            unsigned char base64EncodedText[255];
            unsigned char temp[255];
            size_t targsize;
            size_t srclength;
            des_key_schedule keySchedule;
            unsigned char plainText[8] = {0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01, 0x01};
            unsigned char key[8] = {0x01, 0x23, 0x45, 0x67, 0x89, 0xAB, 0xCD, 0xEF};
            // now create the key schedule
            if(DES_set_key(&key, &keySchedule) != 0) {
              // something is wrong, unable to create key schedule
              printf("Unable to create the key schedule.");
              return 1;
            // now the key schedule is created, encrypte the data
            // in block contains the plain text, the out block contains the encrypted cyphertext,
            // and outin contains the decrypted plain text (should be the same value as in)
            memcpy(in,plainText,8);
            memset(out,0,8);
            memset(outin,0,8);
            // ecb mode is the simplest mode, takes in only 8 bytes (a cblock) and output a cblock
            des_ecb_encrypt(&in, &out, keySchedule, DES_ENCRYPT);
            des_ecb_encrypt(&out, &outin, keySchedule, DES_DECRYPT);
            printf("\nthe key in hex:\n");
      for(i = 0; i < 8; i++) {
        printf("%02X", key);
    printf("\nthe key in base64 encoding is:");
    memcpy(temp, key, 8);
    temp[8] ='\0';
    targsize = base64encode(temp, 8, base64EncodedText, targsize);
    printf("%s", base64EncodedText);
    printf("\nthe plaintext in hex:\n");
    for(i = 0; i < 8; i++) {
    printf("%02X", in[i]);
    printf("\nthe plaintext in base64 encoding is:");
    memcpy(temp, in, 8);
    temp[8] ='\0';
    targsize = base64encode(temp, 8, base64EncodedText, targsize);
    printf("%s", base64EncodedText);
    printf("targsize is %d", targsize);
    printf("\nthe encrypted output in hex:\n");
    for(i=0; i<8; i++) {
    printf("%02X", out[i]);
    printf("\nthe encrypted output in base64 encoding is:");
    memcpy(temp, out, 8);
    temp[8] ='\0';
    targsize = base64encode(temp, 8, base64EncodedText, targsize);
    printf("%s", base64EncodedText);
    printf("\nthe decrypted text in hex:\n");
    for(i = 0; i < 8; i++) {
    printf("%02X", outin[i]);
    printf("\nthe decrypted text in base64 encoding is:");
    memcpy(temp, outin, 8);
    temp[8] ='\0';
    targsize= base64encode(temp, 8, base64EncodedText, targsize);
    printf("%s", base64EncodedText);
    printf("\n");
    return 1;
    int base64encode(unsigned char *src, size_t srclength,
    char *target, size_t targsize)
    size_t datalength = 0;
    unsigned char input[3];
    unsigned char output[4];
    size_t i;
    while (2 < srclength) {
    input[0] = *src++;
    input[1] = *src++;
    input[2] = *src++;
    srclength -= 3;
    output[0] = input[0] >> 2;
    output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
    output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
    output[3] = input[2] & 0x3f;
    Assert(output[0] < 64);
    Assert(output[1] < 64);
    Assert(output[2] < 64);
    Assert(output[3] < 64);
    if (datalength + 4 > targsize)
    return (-1);
    target[datalength++] = Base64[output[0]];
    target[datalength++] = Base64[output[1]];
    target[datalength++] = Base64[output[2]];
    target[datalength++] = Base64[output[3]];
    /* Now we worry about padding. */
    if (0 != srclength) {
    /* Get what's left. */
    input[0] = input[1] = input[2] = '\0';
    for (i = 0; i < srclength; i++)
    input[i] = *src++;
    output[0] = input[0] >> 2;
    output[1] = ((input[0] & 0x03) << 4) + (input[1] >> 4);
    output[2] = ((input[1] & 0x0f) << 2) + (input[2] >> 6);
    Assert(output[0] < 64);
    Assert(output[1] < 64);
    Assert(output[2] < 64);
    if (datalength + 4 > targsize)
    return (-1);
    target[datalength++] = Base64[output[0]];
    target[datalength++] = Base64[output[1]];
    if (srclength == 1)
    target[datalength++] = Pad64;
    else
    target[datalength++] = Base64[output[2]];
    target[datalength++] = Pad64;
    if (datalength >= targsize)
    return (-1);
    target[datalength] = '\0'; /* Returned value doesn't count \0. */
    return (datalength);
    [code                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • I've only had my iphone 5s for a week. I keep getting an error message of "Server has stopped responding."  I need the server to work. Does anyone know if there is a "fix" for the problem? Other wise, I probably best return for a refund and get a Samsung.

    I've only had my iphone 5s for a week. I keep getting an error message of "Server has stopped responding."  I need the server to work. Does anyone know if there is a "fix" for the problem? Other wise, I probably best return for a refund and get a Samsung.  Thanks

    sandyzotz wrote:
    Other wise, I probably best return for a refund and get a Samsung.
    Unlikely.  Based on the complete lack of detail of the issue provided it is entirely possible the same issue would occur.
    Unless and until the user provides some actual details of the problem, there is nothing the indicate that the issue is with the iPhone.

  • After upgrading to Yosemite and Aperture 3.6 all the library icons are shown plain. Does anyone has a hint?

    After upgrading to Yosemite and Aperture 3.6 all the library icons are shown plain. Does anyone has a hint?

    If it is still slow after removing Symantec, you may need a RAM upgrade. Yosemite can run very poorly on older machines with only 4 GB RAM.

  • I have a canon mf5940dn, it is connected via USB to my macbook air, and yet, when i want to print smith, it says the printer is not connected. does anyone has any idea why? is there a guide to do it properly?

    I have a canon printer mf5940dn, it is connected via USB to my macbook air, and yet, when I want to print smth, it says the printer is not connected. does anyone has any idea why? is there a guide to do it properly?

    Hi,
    I am currently replying to this as it shows in the iChat Community.
    I have asked the Hosts to move it to Snow Leopard  (you should not lose contact with it through any email links you get)
    I also don't do Wirelss printing so I can't actaully help either.
    10:01 PM      Friday; July 29, 2011
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb( 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Hello, I just got an iPhone 4S and it seems that the bluetooth function in it doesn't work. I tried few times to pair it to other non Apple phones and it never worked. Does anyone has an idea how to solve the problem? Tks.

    Hello, I just got an iPhone 4S and it seems that the bluetooth function in it doesn't work. I tried few times to pair it to other non Apple phones but it never worked. Does anyone has an idea how to solve the problem? Tks.

    This is not a feature of iPhone, iPad or iOS.
    Bluetooth is supported for stereo headsets/speakers, handsfree telephone
    devices/headsets, some keyboards, some peer-to-peer apps from the
    app store and internet tethering where provided by the carrier.
    Other than this it will not connect to a phone/computer/device.  (thanks to ckuan for the wording)

  • Does anyone know of an e-reader app for the iphone that has text to speech capability? I have a Kindle 3G that can read whole pdf documents and books but I cannot figure out how to do it on my iphone 4.

    Does anyone know of an e-reader app for the iphone that has text to speech capability? I have a Kindle 3G that can read whole pdf documents and books but I cannot figure out how to do it on my iphone 4.
    All of the apps I have found on the App store either do not have the text to speech capability or if they have it they will only read a page at a time or simply read the text you paste into their window. I really do not understand what is so difficult about having this feature as Kindle provides it--though Amazon does not make the feature available on its iPhone 4 app.
    Please help.

    thanks. yes i am aware of the VoiceOver feature but it is NOT the solution to my problem. as you said, it is a solution to a different set of issues. i want the text to speech ability because i there are books i need to read but do not have the time to sit down and read them and have become used to listening to them read to me either by a professional human reader or with the text to speech software on the Kindle.
    I think Apple makes the best audio devices but i am really disappointed in this inexplainable shortcoming. if apple can give us siri they ought to be able to design a nice little button that i can push to turn on text to speech while i am in a document, book, magazine or webpage. clearly it is possible as apple has added the "reader" button in safari to have web pages dropped into the reader format.
    thanks for your suggestion though, it is what everyone suggests but it does not address the issue.

  • Does anyone has a problem with the screen of the new ipad? (there's a part of the screen which the color in it is "very" bright) and when I move the aluminium part of the smart cover when it's attached to the ipad the colors change!! Help!!!

    Does anyone has a problem with the screen of the new ipad? (there's a part of the screen which the color in it is "very" bright) and when I move the aluminium part of the smart cover when it's attached to the ipad the colors change!! Help!!!

    I'd take it into my local APple store and have them look at it. There may be something wrong inside your device.

  • After updating iphone 4s to 6.1 version my battery percentage stood at 1 percent. Does anyone has same problem? Or its update bug?

    After updating iphone 4s to 6.1 version my battery percentage stood at 1 percent. Does anyone has same problem? Or its update bug?

    THIS is "quite a few": https://discussions.apple.com/thread/3391947
    As are these:
    https://discussions.apple.com/thread/3391947?tstart=0
    https://discussions.apple.com/thread/3484755?tstart=0
    https://discussions.apple.com/thread/3481668?tstart=0
    https://discussions.apple.com/thread/3518760?tstart=0
    https://discussions.apple.com/thread/2755090?tstart=0
    https://discussions.apple.com/thread/3507356?tstart=30
    https://discussions.apple.com/thread/3482083?tstart=60
    https://discussions.apple.com/thread/3492588?tstart=60
    https://discussions.apple.com/thread/3397244?tstart=90
    And older ones:
    Battery Meter/Life Problems with 4.0.2
    4.0.2 guzzling my battery. Your's too?
    4.0.1 battery life
    Battery runs out very quicky in iOS 4.0.1
    Battery nearly nonexistant after 4.0 upgrade
    Dead battery after few hours on standby using 4.0 software
    3.1.3 battery problem
    OS 3.1.3 battery issues
    3.1.3 upgrade - shortened battery life?
    Battery life cut after 3.1.3 update on iPhone 3G
    3.1.3 Firmware is a battery killer - how do I back out this upgrade?
    Poor battery life with iPhone 3G running 3.1.2
    3.1.2 EXTREME battery drain - what gives?
    3.1 Battery nightmare
    iPhone 3GS with fw 3.1 – battery life gets even worse
    Battery Issues with 3.0.1
    BATTERY drain with 3.0
    upgrade to 3.0 drains my battery
    Battery Drain after Update 2.2.1
    Battery Life Radically Decreased after 2.2.1 Firmware Update
    As you can see, battery issues have been common since the first iphone, frequently reported after an upgrade, but not always. So to blame a specific version doesn't describe the problem sufficiently to find a resolution.

  • Does anyone has the same scrolling problem? My macbook air 13''(2010) running lion, when files in a folder arranged by kind, every scrolling paused for a second..?

    does anyone has the same scrolling problem? My macbook air 13''(2010) running lion, when files in a folder arranged by kind, every scrolling paused for a second..?

    does anyone has the same scrolling problem? My macbook air 13''(2010) running lion, when files in a folder arranged by kind, every scrolling paused for a second..?

  • Does anyone has problem with the Glossary tab in RB8?

    The glossary tab does'nt show on *CHM file. Does anyone has that problem?
    1) Install RH8 on XP SP2 and register hhactivex.dll
    2) Start RH8
    3) Create new project.
    4) Click on '+' sign of Glossary from Project Manager to expand it and double click the Glossary(Default) to show the GLossary Pod.
    5) Type 'First' in the Term input field on the Glossary Pod, and click the + button to add it.
    6) Go to the 'Definition for :first section of the Pod and type in 'First'
    7) Save and generate the CHM file
    This is the first time I create a new project in RH8 with Glossary.
    If I import a previous project created with RoboHelp for Office X4 which has Glossary, and convert project to RH8 format and generate the CHM file, then the CHM file has the Glossary tab.
    I can't possibly beleive it is a bug in RH8 . However, what mistake did I make?
    This happens on XP SP2, RH 8.0.0.0.203, on XP SP3 with RH 8.0.2.208, on Win7 with RH 8.0.2.208. Basically, it doesn't matter on what PC we install RH8, doesn't matter how many time you register hhactivex.dll, the glossary tab never shows up. Howver, it shoes up on Winhelp.
    Thanks

    Hi there
    No, I don't believe they are ameteurs. Besides, some ameteurs do better work than "professionals".
    To be fair, some bugs are elusive. We may see them and report them but when the development team examines things they repeatedly and stubbornly fail to reveal themselves.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7 or 8 within the day - $24.95!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Does anyone know if there is a way for the number of time a song has been played on your iPhone/iPod be transferred to the songs on your iTunes number of plays?

    I mainly just use my iTunes for organizing and adding new songs. Most of the time I listen to my music on my iPhone. I wish it would keep track of how many times I play a song in my music and transfer it to the computer under the 'number of times played' column. It would help out so much! Does anyone know if there is a way for the number of time a song has been played on your iPhone/iPod be transferred to the songs on your iTunes number of plays?

    Hi @imobl,
    You sound like an Apple support guy who hasn't been able to answer my questions.
    To respond to some of the points you made,
    - I did not ignore Ocean20's suggestion. If you has read my post, you would have known that I took my phone to the apple service centre where they tried this restore on THEIR machines. I am assuming that Apple guys know how not to block iTunes. So I actually do not understand your point about me trying the hosts file changes on my machine. Do you not believe that apple tested this issue with the correct settings?
    - you also give a flawed logic of why the issue is a hardware issue. You mentioned that If I thought that the issue was with the software, i should try a restore and getting it to work. The problem is that my error (23), and many others comes up when the restore fails. And you would be astonished to know that not all errors are hardware errors. Sometimes even software errors prevent restores. Funnily enough Apple itself mention that 'in rare cases, error 23 could be hardware related'.
    - all Apple has done so far is replicate the issue. I don not know how anyone can conclude that the issue is a hardware issue.
    And by the way, I am not certain that this is a software bug. Again if you read my Posts, you will notice I only want a confirmation,/proof that the issue is hardware related as they mention..
    Please refrain do. Responding if there is nothing to add.

  • Does anyone know when Contribute 4 is due for release?

    Does anyone know when Contribute 4 is due for release? I've
    seen comments that it is due out soon, and that some people earlier
    in the year beta tested it, but just wondered if anyone out there
    had a bit more detail. If anyone has beta-tested it, do you know if
    it does display table-free XHTML/CSS better in the edit
    view?

    Contribute 4 Feature Summary
    Real WYSIWYG blog entry editing – see what your blog
    entries will look like inside your blog in real time, no
    “preview” required
    Full Blog Editing – browse to any existing blog entry
    and click the “Edit” button, it’s that easy
    Wide Blog Connectivity – support major blog services
    and servers like Typepad, Blogger, MovableType, Wordpress
    Blogs AND Websites – connect to dozens of website and
    blogs all at once, using 5 industry standard protocols (LAN, FTP,
    SFTP, WebDAV, Metaweblog)
    Contribute in Office – publish content directly from
    within Word, Excel, and Outlook via the Contribute toolbar (windows
    only)
    Contribute in your aggregator - use "Post To Blog" from
    NetNewsWire and FeedDemon, and a new blog entry is created in
    Contribute with proper formatting and attribution
    Contribute in your browser - "Post to Blog" and "Edit in
    Contribute" buttons in IE and Firefox (windows only)
    Rich media support – drag and drop JPEG, GIF, PNG,
    MOV, WMF, SWF, and FLV into your blog entries and they’re
    properly inserted and automatically uploaded
    Easy linking – link to recent blog entries or website
    pages or browse the web without having to type URLs
    Easy Tagging – full support for generating and placing
    Technorati-style tags in your blog entries
    Easy Enclosures – full support for adding multimedia
    file enclosures to facilitate podcasting, screencasting,
    videocasting
    And so much more: Spell Checker, Lists, Tables, Categories,
    Trackbacks, Post Date, ...
    An Early information on Mac world -
    http://www.macworld.com/news/2006/10/04/contribute4/index.php
    Hope this helps.
    Arun

Maybe you are looking for

  • A/C DOCUMENT NOT CRAETED IN MB1C ,MVT -501

    Hi, When we goods recipt in MB1C mvt type 501 , here document is posted and 45..........989 & doc numbers saved , when we go through in MB03 and put material doc numer and see A/C  doc number then a/c docmunet not genrated,. i have all ready G/L assi

  • How to pass idoc parameters in a validation script? (10gR3 site studio)

    Obviously idoc won't work in the actual validation script, so I'd like to use it to generate the parameters to pass to a custom function. If I add <!--$siteId--> as a parameter in design mode, it'll be added as: &lt;!--$siteId--&gt; which doesn't wor

  • Why does my iphone say it has never been backed up

    my iphone says it has never been backed up, or last back incomplete or back up failed, yet my icloud will say it has been backed up. why is this happening?

  • HowTo: Replace values in Entity, best practice

    I was reading jsr-220 and now I have a question. What is the best practice to replace values in an entity? For example I have an entity Person: @Table(name = "Person", schema = SCHEMA) public class Person{      @Id      @GeneratedValue      private i

  • I'm having trouble with the TSPlayerV2.1.swf  - Flash Music Player

    I'm using it with DreamWeaver cs4. I got it to work only once. It seems that It won't look for the MP3' folder or it does and the playlist(s) won't match. if so how do you control with playlist for it to use? I'm confused... It worked once, then I pu