How can I save intermediate results?

I am using FOR loops to count the rise time, fall time, higfh time and low time
of a square wave. Is there any convenient way to store the rise time when the
high time starts, store the high time when the fall time starts, etc. such
that the correct intermediate results are saved? So far the only data I can
get out of the loop is that which is present at the end of the count (shift
register w/auto index off) or the entire data set (auto index on). I need the
data in the middle of the count!
With ICs, one would use the rising edge of a clock to register the value of an
IC counter and the IC's propogation time would make sure that this desired
value did not change at the instant that the clock changes, while the IC
r
egistered the data at that instant.
Do I need a delay? Is this a function of the demo versioin of 6i?

Thanks for the idea, it's definitely worth a try. While we're on the subject,
I haven't had much luck with arrays, because of the requirements that all
elements be of the same data type. I have a few questions: How does Build
Array interact with the shift register? Does it act like a switch to stop data
from being added to an array? Does it create a single element array that is
transferred to the shift register each time it executes? Does each value get
overwritten with the subsequent one, or will I end up with an array of all
values? (In this case I would need to traverse the array to find my desired
values, and I don't have any reasonable way of predicting where they will be).
Neil
========================================
Please remove the "nt" for leg
itimate email. Thanks!
========================================

Similar Messages

  • How can I save test results to microsoft access database?

    How can I save test results to microsoft access database?

    Your best solution is to use the Database Connectivity Toolset. You can view the specifications and prices at the following web site:
    LabVIEW Database Connectivity Toolset
    http://sine.ni.com/apps/we/nioc.vp?cid=6429〈=US
    If you have additional questions about this toolset, you can email us at [email protected]
    Zvezdana S.
    National Instruments

  • After generating a table into xml how can i save the result in a XML table?

    Hello everyone,
    I’ve used this function to generate a table into XML schema :
    example :
    SELECT xmlelement("State", xmlattributes( 'http://www.opengis.net/gml' as "xmlns:gml"),
    xmlforest(name as "Name", population as "Population")) from state;
    result:
    <Statexmlns:gml="http://www.opengis.net/gml">
    <Name>Wilkopolska</Name>
    <Population>35000</Population>
    </State>
    Now I need to insert the result into a XML table, because i need to save the result to use it latter ,I hope that someone can help and if there's other solution to do this it would be great.
    Thanks a ot and best regards,
    Lama.

    Just insert into a table....
    insert into t
    SELECT xmlelement("State", xmlattributes( 'http://www.opengis.net/gml' as "xmlns:gml"),
    xmlforest(name as "Name", population as "Population")) from state; and a complete example:
    SQL> create table t (test xmltype)
      2  /
    Table created.
    SQL>
    SQL> create table state
      2  (name varchar2(10)
      3  ,population number
      4  )
      5  /
    Table created.
    SQL>
    SQL> insert into state values ('WI', 35000)
      2  /
    1 row created.
    SQL>
    SQL> SELECT xmlelement("State", xmlattributes( 'http://www.opengis.net/gml' as "xmlns:gml"),
      2  xmlforest(name as "Name", population as "Population")) from state;
    XMLELEMENT("STATE",XMLATTRIBUTES('HTTP://WWW.OPENGIS.NET/GML'AS"XMLNS:GML"),XMLFOREST(NAMEAS"NAME",P
    <State xmlns:gml="http://www.opengis.net/gml"><Name>WI</Name><Population>35000</
    SQL>
    SQL>
    SQL> insert into t
      2  SELECT xmlelement("State", xmlattributes( 'http://www.opengis.net/gml' as "xmlns:gml"),
      3  xmlforest(name as "Name", population as "Population")) from state;
    1 row created.
    SQL> select *
      2    from t
      3  /
    TEST
    <State xmlns:gml="http://www.opengis.net/gml"><Name>WI</Name><Population>35000</

  • How can I save my keepsake photo albums as PDFs in my album folder. Since I changed from Snow Leopard to Lion last year I have't been able to do this.

    How can I save my keepsake photo albums as PDFs in my album folder. Since I changed from Snow Leopard to Lion last year I have't been able to do this.

    preview it using this method -http://support.apple.com/kb/HT1040 - and save the resulting PDF
    Is this what you are doing?Your description does not sound like you are
    LN

  • How can I save my contact sheets in Photoshop Lightroom?

    How can I save my contact sheets in Photoshop Lightroom? I see that you create the sheets under the Print tab but how can I save them as jpgs to my desktop?

    Kittie,
    I use this workflow and it works really well for me; it's really strange that it
    i did
    work for you and now it doesn't.
    I had a quick dabble and
    i may
    have an explanation. If I read your error message it looks like "New Folder" is trying to create a folder ~kittie/Desktop/3 Working/Contact Pages. However, the automator "create folder" won't create folders recursively like that - it will only work if "3 Working" already exists. Certainly I was able to reproduce the 'quick flash error message and bomb out with no results' effect by asking it to produce a directory from one that didn't already exist. When I added two Finder actions it didn't work as I expected - producing 74 files in subdirectories that just looped round and round when I expected one file and one directory.
    I added a shell script that renames the files too and it all works just dandy for me. If you let me know your e-mail I'll post the automator "app" file and shell script I use. It gives you sensibly named files instead of the sdkjfdfadkljfb.jpeg thing that comes out of automator.
    Damian

  • How do you save quiz results to desktop?

    Hi,
    Thank you for reading. I really need help with this situation as I have searched high and low for the answer for weeeks now!
    I need a way of saving the quiz results locally to an examiners laptop that the student is taking the quiz on. The reason for this is because the laptop will have no internet connection at all. They will be sitting the quiz on a local html file stored on the desktop of this laptop. I need a way (with or without scorm reprting) to get the results saved locally on that machine. I really do not mind how this is done as long as we can just save the results of each student somewhere locally on that machine. As I said we don't mind if its not scorm complient, even an automatic screenshot would do.
    Thanks in advance
    Danny

    Why don't you just set up a local web server and database environment on the examiner's PC and install Moodle so that you can run it locally and have the user do the course modules logged in as a user?
    Setting up a XAMPP or WAMP server environment is easy.  You can download a self installing executable that will have you up and running with an Apache web server, PHP, and MySQL in no time.  Installing Moodle is also quite straightforward.
    Then you can just output your Captivate course as a SCORM 1.2 course and upload it onto the Moodle server.  User's log in as users to take the course.  The Examiner logs in as an Admin to view results.

  • How can I save the .mp4 files downloaded from internet to ipad memory so that I don't have to download everytime to view them again

    How can I save the .mp4 files downloaded from internet to ipad memory so that I don't have to download everytime to view them again. Also they might remove them from internet so I can't rely on the bookmark to them.

    I'm trying to send home movies to my 10 year old nephew who lives across the country. He doesn't have a computer. He has an iPod touch. His parents have computers. But I don't want everything I ever try to have him do result in "you need your parent's computer for this." It's getting really embarrassing. I have converted my family over to Apple computers but now they want to buy iPhones, iPads, and iPods even though I tell them to go Android. It took a decade to convert them away from windows now I'm trying to keep them away from these freedom limited iOS devices and they won't listen. Then it becomes my responsibility to make their iPads print to their fancy pre-airprint color laser jet printers, get home movies onto them, and countless other things. It's driving me nuts.
    I have converted these files to a format that the iOS devices will play directly off of dropbox. Now, how do I get the infernal devices to save it instead of play it?

  • How can I save/backup my server configuration ?

    Hi,
    I'm new to OS X Server.
    I have my server configured and running as planed.
    But how can I save the server configurations?
    So in case I have to reinstall, I can just reload the configuration.
    Thanks,
    JO

    You can also run the the Server Assistant (/Applications/Server/Server Assistant.app) and save the resulting configuration to a file or as a directory record.
    If that file is present at the root level of any local drive, or present on a directory server, when a new copy of Mac OS X Server boots up for the first time (Think USB pen drive) it will automatically configure itself and reboot.
    This can be very useful if you need to setup many servers at once. However, you are only storing the serial number and a few basic settings (time zone, which services to turn on by default, etc) so this feature isn't really all that great for disaster recovery purposes. It can, however, save you a few minutes dealing with serial numbers when you need to rebuild a server NOW.
    Also, since none of your services will be configured yet, it's usually best practice to setup a server without any services turned on (except maybe remote desktop) and then turn them on after you get things setup. This is where those "tear" sheet .plist backup files from Server Admin come in handy.
    Matt Bryant
    ACTC
    Husson College and the New England School of Communications

  • How can i display the result of java class in InputText ?

    Hi all,
    How can i get the result of java class to InputText Or OutputText ???
    also can every one in the forum give me road map for dealing with java in oracle adf because i'm beginner in oracle adf
    i saw some samples in oracle adf corner but it's difficult for me.

    User,
    Always mention your JDev version, technologies used and clear usecase description (read through this announcement : https://forums.oracle.com/forums/ann.jspa?annID=56)
    How can i get the result of java class to InputText Or OutputText ???Can you elaborate on your requirement? Do you mean the return value of a method in a class as output text? Or an attribute in your class (bean?) as text field?
    -Arun

  • How can I save to the same map every time when printing pdfs?

    How can I save to the same map every time when printing pdfs?
    Finder points to the document map even when I chose a different map recently.
    I often print series of pdfs from the print dialog box, I'd like to choose the map to save to and then have all subsequent pdf prints automatically directed to the same map until I decide otherwise.

    that link seems to be broken right now:
    403 Error - Forbidden  - No cred, dude.

  • How can I save multiple titles under the same DVD?

    I use HandBrake to rip DVD's into iTunes. How can I save multiple titles under the same DVD? For instance, I have a Jimi Hendrix documentary that comes with special features, such as concert performances. I would like to have the main feature and the special features saved in my iTunes under the same title, perhaps as different 'tracks' (kind of like how different songs can be saved under the same album).
    Is there a way for me to do this, or am I chasing phantoms?

    *This response is for iPhoto 11 (v9). If you're using an earlier version, please post back and let us know. Troubleshooting steps are not the same for different versions. To find out which iPhoto you have: iPhoto Menu -> About iPhoto)*
    Duplicate the photo first. (Photos -> Duplicate). This means that you will have multiple copies of the master as well as the edited version.
    If you use versions like this often and wish to have only one master then you can do this with Aperture.
    Regards
    TD

  • How can i save my individual playlist on itunes on my external hard drive because i want to buy a laptop and install itunes and move all my music and playlist thats on my desktop to my laptop and almost all my music is from a bunch of cd's i own

    how can i save my individual playlist on itunes on my external hard drive because i want to buy a laptop and install itunes and move all my music and playlist thats on my desktop to my laptop and almost all of my music is from a bunch of cds i own

    Hello ryane84
    The easiest and most efficient way to copy your music is to follow the steps under the External drive section. Make sure that you have organized the iTunes library first before you copy it over. Then put the copied iTunes folder in the same Music folder on your computer.
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/ht4527
    Regards,
    -Norm G.

  • In Premiere I can edit an avi or mov clip but I can not save the result as a like file.  Why not???

    In Premiere I can edit an avi or mov clip but I can not save tghe result as a like file.  What do I have to do???  It only saves a project.  Under 'File' the 'Export' function is greyed out.  I need help baddly.
    [email protected]
    Bill Schoon

    Boatbuilder
    Let us start from the beginning.
    It has been established that you have Premiere Elements 10. On what computer operating system is it running?
    There has not been a File Menu/Export/Movie export opportunitity in Premiere Elements since version 7. We are not up to version 12.
    For Premiere Elements 10, your export opportunities are all in Share/ including one for Computer. Under Computer there are several choices. The ones that you see are Adobe Flash Video, MPEG, and AVCHD. The others you have to scroll down to. And those choices are AVI, Windows Media, QuickTime, Image, and Audio. You do not have to use the scroll bar for this. You can click on Adobe Flash Video panel to get it to turn black. Then use the down arrow to go down the list and the up arrow to go up the list. Once you get to a category, you can select a preset and go with it or customize it under the Advanced Button/Video Tab and Audio Tab of the preset.
    If you post the properties of your source media that you want to try to match in the export, I would be glad to suggest the exact settings for you.
    We will be watching for your follow up with details.
    Thank you.
    ATR
    Add On...The Premiere Elements 10 File Menu is for more than Saving, just not exporting. One of the key features that can be access there is the Project Archiver. More on that another time.

  • How can I save some pics from my Mac onto my Ipod touch?

    How can I save some pics from my Mac to my Ipod Touch ?

    Syncing photos with iTunes is explained here: http://support.apple.com/kb/HT4236
    You'll have to choose the photos you want to sync in the photo pane in iTunes with your phone connected, then apply sync.

  • How can I save photos on my ipad3 from emails and Facebook. Since downloading iOS6 I am not offered SAVE PHOTO only DONE? Help me please.

    How can I save photos on my ipad3 since downloading iOS6 I do not get SAVE PHOTO option only DONE. Please don't be too technical I am74 and really only use my ipad for photos and emails

    If the photos that you are wanting to delete are also in your Camera Roll then you can delete them from the camera roll

Maybe you are looking for

  • Automator Find Finder Items

    I have created an automator workflow to batch import photos into a document from within Word. The workflow works fine and has two processes: Find Finder Items Import Contents into Word Document The problem is when i run this workflow from within Word

  • Formula Functions - A basic question

    Hi, This must be very basic. Please bare with me. What is the difference in defining a formula function as 'External' and 'User Defined Function' and 'Formula' class? I read some where that you can use contexts in class 'External' and cannot in user

  • Purchase Order Driver Program Not loading SMARTFORM

    Hi, I have developed Z smartform by copying from standard form and tried to call from standard program only but here I am not able to call my Z smartform and I am able to call only Z SAPSCRIPT from this standard program. I have done all the necessary

  • White blank popup permanent on screen front

    white rectangle comes on screen with some web sites and stays in front of all programs and cannot be remove unless I reboot. Not all web sites cause the popup. When right click is picked on the square it allows you to go to the Flash Player 9 web sit

  • Help with installing dreamweaver CS3

    Hi, i just downloaded the free trial version of Dreamweaver CS3 and i was installing it and when i did,it loaded the files then stoped and wont go any further i dont no why