How do I graph multiple bit values on one time axis?

I want to graph multiple bit values, all of which will change back and forth from 0 to 1, on the same time axis, but I don't want any visual overlap between the different bit value traces.  Now I could do this by graphing bit one as either 0 or 1, bit 2 as 2 or 3, bit 3 as 4 or 5, etc., but I would really rather have multiple Y axes showing 0 to 1, stacked vertically on the same time (X) axis.
You could visualize this as multiple pens on a strip chart continuously recording different values.  Each pen has its own vertical area in which it writes, but all pens could be writing data from the same numerical range.
Hmmm...  I think my description might be roughly as clear as mud, but if anyone out there can figure out what I am asking and has potential solutions, please let me know.
Thanks!

Thanks.  I will look at that VI, but I think I have already seen it.  My problem is that I have CAN data coming in for an hour or so, but the time interval between receiving specific CAN arbitration IDs varies, so I want to plot the X axis against specific, varying time values, not a standard dT.  I'm not sure I can do this on a digital graph, but I haven't given up hope yet.
BTW, I am receiving 8-byte CAN packages.  Some of the bytes represent actual values, but I need to break others up into individual bit values to see error and status flag settings.  Once I break the bytes into bits, I convert from analog values to digital values.

Similar Messages

  • How do you remove multiple email messages at one time

    I have a iphone 4 and today it started piling up over 4000 undeliverable messages for no apparent reason. I somehow managed to stop the process but I am left with over 4000 messages that I need to delete. How do you remove multiple email messages at one time. I can "mark" all the messages at once but I cannot find the move or delete button to trash the messages. Can some one help me out.
    Thanking you in advance.
    PL

    Just figured it out - I can select multiple messages as you suggested when I am not in full screen mode.
    So once I come out of full screen mode - then the multiple windows open.
    QED

  • How can I delete multiple duplicate songs at one time? I would really like to wipe out my music library and just reinstall all files. Any Help is appreciated.

    I am trying to cleanout my iTunes Music Library. I would prefer to wipeout the music library and then reinstall my music. I do not know how to delete multiple files besides doing one by one. Any help is much appreciated. Thank You.

    Dupin is for Mac. For PC users I've written a script called DeDuper which can help remove unwanted duplicates. See this  thread for background.
    tt2

  • How do you delete multiple e mail at one time

    How do you delete multiple emails at one time?

    The link works OK for me on my iMac running Safari and Tiger 10.4.11. It also works on my iPad running Mercury and iCab.
    You may be right about the trick no longer working. I have only used it once or twice and that was just as an experiment. I will quit posting the link now if it no longer works.
    This no longer works?????
    From Destef_12
    You actually can:
    it took me weeks of research to figure out finally how to decode this yet another secretive secrets of apple. there is a perfect way of deleting ALL emails at once without jailbreaking your iphone or ipad...and here it is:
    Open Inbox>>EDIT >> check/select the top message, it will highlight the move button >>press and hold the move button and uncheck the message that you had checked earlier >> lift all your fingers off from the ipad screen and leave it alone. wait until all your messages pile up on the right hand portion of the screen (in ipad). iphone will give you the actual number of emails it has selected for the action. now they are just waiting for your command to be moved ALL at once. >> choose trash to delete all of them or any other folder where u want to move them, like one piece. remember this will replicate your action on the server so u will ACTUALLY move them or delete them on the server and not just the ipad.
    once you have moved all messages to trash you can either leave them there for the scheduled cleaning or empty it right away by doing this: go to trash folder and click edit. the delete all button shows up at the bottom of the screen. hit it! you r done!
    if you do not see effects of your actions on the server make sure you have enabled Your email accounts for such actions.
    tips:
    1. please give enough time (could take upto several minutes depending the number of emails to be moved) for the emails to be selected for the move. your screen will become unresponsive while all emails are being packaged. once emails are ready, in ipad, you will see them zoomed out on the right hand side of the screen, and in iphone you will see the message showing you the actual number of messages that have been selected.
    2. avoid purging very large number of emails, the mail app might freeze or crash. if your inbox has thousands of emails change your sync settings in mail settings to fill lesser number of emails in you inbox
    Message was edited by: Demo

  • 10GR2 - How can I load multiple row values into one field?

    Hi
    Can anyone please help with a problem I'm having with merging data.
    The source table has multiple entries for the same Id e,g,
    ID Code
    1 123
    1 234
    2 123
    2 567
    The output should only have one row per ID e.g.
    ID Code_List
    1 123;234
    2 123;567
    Do you know what operator I could use that would allow me to do this? I've looked at unpivot but I think I would need multiple output fields (one for each Code). I have to concatinate the codes and separate with a semi-colon.
    Thanks
    GB

    Q) Input data
    =============
    COL_0,COL_4
    1235,"G0123,G124,G25,G6"
    1236,"G01,G23,G124,G25,G6"
    1237,"G0123,G1,G24,G25,G6"
    1238,"G,G0123,G124,G25,G6"
    1239,"G0123124,G256"
    Output
    ======
    TEST_ID,TEST_VAL
    1235,G0123
    1235,G124
    1235,G25
    1235,G6
    1236,G01
    1236,G23
    1236,G124
    1236,G25
    1236,G6
    1237,G0123
    1237,G1
    1237,G24
    1237,G25
    1237,G6
    1238,G
    1238,G0123
    1238,G124
    1238,G25
    1238,G6
    1239,G0123124
    1239,G256
    I wrote this procedure...
    declare
    rcd_cnt number;
    test_id123 number;
    junk_1 number;
    cd_occurences number;
    child_count number;
    str_abc varchar2(200);
    char_pos     number default 0;
    cd_temp_str varchar2(50);--:= 'G0123,G124,G25,G6';
    begin
    select nvl(count(col_4),0) into rcd_cnt from test_ee where col_4 is not null;
    for aa in 1 .. rcd_cnt loop
    select col_0,rownum rn,nvl(trim(col_4),0) into test_id123,junk_1,cd_temp_str from (select col_0,rownum rn,col_4 from test_ee where col_4 is not null) where rn = aa;
    --dbms_output.put_line('...I am in for loop...' || cd_temp_str);
         --dbms_output.put_line('===================' || rcd_cnt || '.................' ||aa);
    cd_occurences := length(cd_temp_str) - length(replace(cd_temp_str,','));
    dbms_output.put_line(cd_temp_str || '...Str Occurences are ...'||cd_occurences ||'**************'||test_id123);
    child_count :=0;
    for z in 1..length(cd_temp_str)+1 loop
    child_count := child_count+1;
         if(instr(cd_temp_str,',') > 0) then
         char_pos := instr(cd_temp_str,',',1,1);
              str_abc := substr(cd_temp_str,1,char_pos-1);
         dbms_output.put_line('..Partial String of..'|| z ||'..is.....' || str_abc);
              insert into test_xx(test_id,test_val) values(test_id123,str_abc);
         end if;
         cd_temp_str := substr(cd_temp_str,char_pos+1,length(cd_temp_str));
         if(cd_occurences=child_count) then
         dbms_output.put_line('..Partial String of..is.....' || cd_temp_str);
              insert into test_xx(test_id,test_val) values(test_id123,cd_temp_str);
         end if;     
    end loop; -- close for of z */
    --dbms_output.put_line('...I am in end for loop...');
         end loop; -- close for of aa
    end;
    instead of procedure,is there any way from sqlqery.

  • How to uninstall multiple cloud apps at one time?

    How do I uninstall multiple cloud apps at one time from windows 7 pro?

    Hi Bigdog3766,
    Please refer to the below mentioned link under "Uninstall Apps":
    http://helpx.adobe.com/creative-cloud/help/install-apps.html
    Let us know if it helps,
    Thanks!
    Gurleen

  • Change multiple object properties at one time

    I'm using Universal Designer and I have to manually change the properties of over 100 objects.  Does anyone know how I can change multiple object properties at one time?

    Hi,
    This links may be helpful to you,
    http://forumtopics.org/busobj/viewtopic.php?t=94828&sid=1eb4a78e88c26b14418c354d1321e350
    http://www.forumtopics.com/busobj/viewtopic.php?t=21029
    All the Best,
    Madhu...

  • Multiple Phase values at one frequency

    Hi,
    I have done the frequency response analysis for a device using the frequency response example from sound and vibration toolkit and i get multiple
    phase values at one frequency how can i reduce it to one value without any error i am posting the result from the experiment please check 
    and give me suggestions are the stimulus and response phase values supposed to be like that???? 
    Attachments:
    DAQ freq resp_trial 2.vi ‏171 KB
    Freq resp results.JPG ‏260 KB
    file.vi ‏17 KB

    SK,
    You have serious problems in your File.VI.  Why are your writing to your file and then reading it right back?  Worse, there is no guarantee that the File write will actually occur before the File Read.  You have a race condition set up there between those two Spreadsheet File VI's.
    If you want to maintain a history of whatever has already been written to the file, you should be building it into an array and storing in a shift register.  Even if your File.vi would by chance work the way you want it to, storing data in the file system is much slower than maintaining your data in memory.
    As for your while loop, it is going to run as fast as it can with respect to all the functions occurring inside of it.  Is it possible you are getting 14 iterations of that while loop for each frequency step that is occurring?
    Message Edited by Ravens Fan on 07-25-2009 01:35 AM

  • How do I make multiple movies look like one?

    I created a demo of 136 slides with mostly screencaps and one
    small flash animation. The final published flash file is
    approximately 30MB. When the demo is run on multiple computers, the
    CPU utilization rises up to almost 100%, this makes the demo run
    very slowly on most computers. I was advised to cut my captivate
    movie in half ( in slides)... however even then the CPU utilization
    is quite high. How can I break my demo into multiple linked movies
    (to bring down the file size) but still have it play smoothly
    without it stopping to load after each new movie? How do I make
    multiple movies look like one?
    Thank you.

    Would it work to make the navigation of the page go to the
    next movie?

  • How do I install multiple KMS keys on one server?

    I currently am working at Phelps County Regional Medical Center in Rolla, MO and my question is: How do I install multiple KMS keys onto one server? This is very urgent and I have the KMS activating Windows 7 but, I also need all my Office keys, Windows
    8, and Windows 8.1  to be activated via KMS. the current KMS is a Windows Server 2008 R2 server. Please help me out and thank you for your time! :)

    you need to apply the following update (http://support.microsoft.com/kb/2885698)to your KMS server so you can license up to Windows 8.1.  From there your key for 8.1/2012R2 will license everything
    downwards and then you can also install your Office KMS key without issue.  If its Office 2013 then you need to download the files here (http://www.microsoft.com/en-us/download/details.aspx?id=35584) 
    Be kind and Mark as Answer if I helped.

  • Preview; How can I open multiple PDF's in one window with Preview?

    How can I open multiple PDF's in one window with Preview?
    I have gone to Previews preferences and selected 'Open groups of images in the same window' and have tried every setting imaginable and nothing works. What am I doing wrong?

    Hi, a few ways..
    http://www.monkeybreadsoftware.info/Freeware/CombinePDFs.shtml
    http://www.monkeybreadsoftware.info/Freeware/CombinePDFs.shtml
    http://www.macosxhints.com/article.php?story=20060327192826493&lsrc=osxh

  • How i can combine multiple pdf files in one file using a macbook air

    how i can combine multiple pdf files in one file

    The application Preview.
    Preview Help.
    Save combined PDFs
    Open the PDFs you want to combine.
    In each open PDF, choose View > Thumbnails to display the pages of the PDF in the sidebar.
    Drag the thumbnails you want to add (Command-click to select noncontiguous pages) to the thumbnail sidebar in the other PDF.You can add pages to the end of the document or between pages in a document. Drag thumbnails to reorder them. You can also add a PDF file before or after another PDF document.
    Choose File > Export to save a new PDF containing all of the combined pages, or choose File > Save to replace the original version of the destination PDF with the version containing the combined pages.

  • How can I have multiple accounts and only one library

    How can I have multiple accounts and only one library that all the purchased items feed into?

    ask your wireless provider.

  • In Elements 7.0, how can I delete multiple photos at the same time?

    In Adobe Photoshop Elements 7.0, how can I delete multiple photos at the same time?   Please be a little specific so I can follow your instructions as I'm not real smart at computers; I'm an intermediate user.  Thank you.

    Shift-click the photos or Ctrl-click them to select them, then right-click one of them and choose Delete from Catalog. They will all go together.

  • How do I setup multiple users to use one source but manage playlists separately?  For example, play counts are specific to each user.

    How do I setup multiple users to use one source but manage playlists separately?  For example, play counts are specific to each user.

    Hi,
    Thank you for posting in Windows Server Forum.
    Here adding to the words of “Tim”, a forwarder is a DNS server on a network used to forward DNS queries for external DNS names to DNS servers outside of that network. You can also forward queries according to specific domain names using conditional forwarders.
    A DNS server on a network is designated as a forwarder by having the other DNS servers in the network forward the queries they cannot resolve locally to that DNS server. You can refer information regarding forwarders and how to configure from beneath link.
    Understanding forwarders
    http://technet.microsoft.com/en-us/library/cc782142(v=ws.10).aspx
    Configure a DNS Server to Use Forwarders
    http://technet.microsoft.com/en-us/library/cc754941.aspx
    Hope it helps!
    Regards.

Maybe you are looking for

  • Calling a Form

    Hi, I want to Call a form from my menu. I remember that in FORMS 6i, you could use "Call Form", "Open Form" and "New Form". Is there any equivalent in FORMS 10g, or is there another way to do this ? Cheers, Marc.

  • IWeb Error Message - NEED HELP ASAP

    I created a new site and I'm trying to publish it and continue to get the message: "iWeb couldn't connect to MobileMe. Make sure your Internet connection works and try again." I am connected to the internet via ethernet and I'm having no trouble with

  • Figure out Servers ip's in runtime.

    Can anyone give me some direction on how can I return my client which works           with a cluster using IP Multicast, a list of IP's of all the running servers           in that cluster so he can connect each of them directly.           I need thi

  • Converting mp3

    Since no server will allow big files to be sent in e-mail we're stuck with sending mp3's which of course don't sound as good as Aiff files. My questionis: if I send an mp3 to someone for him to record his vocals on, should he convert the file to Aiff

  • Cant install extensions or put solutions into practice, someone hold my hand please

    Im using Windows 8 I dont know what version on what update or how to find out I have extension manager CS6 and Flash CS6 Flash is a recognised product by extension manager Ive tried extensions: Keycaddy Pro, Keycaddy (latest free version) and somethi