How can I create a buffer, array or pipeline that stores the last 5000 dates of a voltage measurement with PCI6036 & SCXI1104C and continously drops the last date and inserts the latest date (scanrate 200 or 2000Hz)?

I develope a porgramm for continious monitoring. If the voltage of a channel exceeds or is lower than the upper or lower limit of tolerance the actual date must be stored and additionally the dates being stored 10sec before and after this event. Can somebody give some advice how to create the buffer to keep the dates 10s before the error event? Thank U.

I've written you a quick array buffer vi. I'm not sure if it'll be fast enough though.. Try it and see! I've used the loop numbers in my array, but i'm sure you can feed in the dates instead.
Attachments:
Array_buffer.vi ‏26 KB

Similar Messages

  • How can I create additional "Sent Mail" folders so that I can organize my sent mail along the same lines as the inbox? I use Mail v 4.5

    How can I create additional or sub "Sent Mail" folders so that I can organize my sent mail along the same lines as the inbox? I use Mail v 4.5.

    Thank you for your reply Don, but I had already gone through that procedure and it will only create new mailboxes for received mail. I want to create new mailboxes for sent mail, i.e. the first column being "to" not "from". Under the Mailbox menus there is an option "Use This Mailbox For" but all the options under that (including Sent) are greyed out. Unfortunately the View/Columns option to change from "From" to "To" changes all mailboxes not just the active one.

  • How can I create a white border around figures that are in an image? (CS 6; examples+image included)

    Hi,
    I have CS6 and am wondering how to create a white ("comic style"?) border around figures in an image, as in the examples below. I don't wish to include the black shadow of the border, just the white part.
    Examples:
    Here's the image I'd like to alter, making a white border around the outline of all five figures:
    I researched for quite a while but could find no instructions. It would be very much appreciated if someone knows and would be kind enough to share the technique! Thank you.

    If you make the image a layer (opposed to Background)...
    You could Select the blue with the Magic Wand as Semaphoric says, then fill with white.  Then choose Select - Modify Selection - Contract, and mask or delete the remaining pixels.  The Contract operation will give you a nice border the size you choose.
    For extra credit, you could use Refine Edge to make the selection more accurate.
    Click to see the image  against a dark background.
    -Noel

  • How can I create multi-dimensional arrays of controls?

    I'm building a VI that will have hundreds of on/off buttons, 24 on each of 8 tabs.  I can deal with them programmatically in an array, like this:
    and then find which one was pushed with some XOR'ing:
    But what if I want two rows of 12 buttons?  Can I make a 2D array of buttons somehow?  Or a 1D array of buttons on two rows for cosmetic reasons?
    What if I want to put 24 buttons on each of 8 tabs?  Can I make a 24x8 array of controls somehow?  Or a 12x2x8?
    Thanks,
    -Jordan
    Solved!
    Go to Solution.

    jordanglassman wrote:
    and then find which one was pushed with some XOR'ing:
    I would strongly recommend to replace the XOR with a not equal. Same outcome, but less nerdy. It is also much more universal! For example if you ever need to do this on an array of numerics to see which element got changed (I often do!), the XOR will no longer work as well (with integers, you'll end up with bitwise comparisons and numeric results, and with DBLs you'll end up with coercions and unpredictable results because bits are lost).
    LabVIEW Champion . Do more with less code and in less time .

  • How can I create a new worksheet every time that one cell it´s filled

    I was looking in the references formulas and I find the formula "Direcction".
    My goal it´s to create a new worksheet everytime that some cells are filled.
    So I need one formula that alows me to put this reference and open automaticaly a new worksheet and this new table inside of this worksheet.
    It is clair the question?
    Someone can help me wiht that?

    Hi Wayne, Not really, the smaller table it´s not really important, I was trying to do the new sheet with it in that case.
    What I want is to use the dates in the row with the items markeds to create a new worksheet.
    I made an example donw here.
    I have the first table, than from it, I want to do 4 new tables
    I mean, everytime that I finish with one column I want to have a new table (in a new work sheet) with that items markeds.
    Do you think that script it´s possible to solve this?
    How can I do it?

  • How can I create an installer for my project that can work on 32-bit Windows if I have 64-bit Windows Vista?

    Hi, 
    I made a LabVIEW project that works perfectly and made an installer for it. I tested the installer on my own computer and everything worked well. The goal for my installer was to put it on multiple computers. So I tried to do this on another computer that has Vista 32-bit and it told me that the installer can only run on 64-bit computers. I tried to choose to install run-time 32bit and it did not change anything, there was still a message to tell me that this installer only can be ran on 64-bit computers. How can I make an installer that works on 32-bit computers? 
    Thank you. 
    Solved!
    Go to Solution.

    Langelier wrote:
    Will my project work on 32-bit version even if created on 64-bit version?
    The code will have to recompile, but yes it should work.  I recommend making a backup before proceeding just in case.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Captivate 5: how can I create a hyperlink within a slide that links to an internet site?

    Hi.
    I need to create a hyperlink on a slide in Captivate 5 that links to an internet site.
    I cannot seem to locate this function on the menus in Captivate 5.
    Can someone please give me the instructions on how to do this?
    Thanks.
    CB.

    Hi there
    It's unfortunate that you missed the links we tried to put where you would find them before you even posted. Because if you had read through them, it would have saved you from having to post your question as it is answered there.
    Even though you missed the links, I'd heartily encourage you to read through them. Especially the Frequently Encountered Issues link, as it will also address some issues you will likely encounter with linking.
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • How can I create a single array from three arrays? Please Help!

    I have three arrays:
    Dates[2002-10-29 2002-10-30 2002-10-31 ...]
    OCodes[AC AD AE ...]
    LCodes[A01 A02 A03 ...]
    I would like to combine the above three arrays and write out to an array
    The new array would look like:
    NewArray[ 2002-10-29 AC A01, 2002-10-29 AC A02, 2002-10-29 AC A03,
    2002-10-29 AD A01, 2002-10-29 AD A02, 2002-10-29 AD A03,
    2002-10-29 AE A01, 2002-10-29 AE A02, 2002-10-29 AE A03 ......,
    2002-10-31 AC A01, 2002-10-31 AC A02, 2002-10-31 AC A03....,
    2002-10-31 AE A01, 2002-10-31 AE A02, 2002-10-31 AE A03...]
    Thanks in advance!

    String [ ] newArray = new String [Dates.length];
    for (int counter = 0; counter < Dates.length; ++ counter)
    StringBuffer buf = new String Buffer();
    buf.append(Dates[counter] + " ");
    buf.append(OCodes[counter] + " ");
    buf.append(LCodes[counter]);
    newArray[counter] = buf.toString(0;
    }

  • How can i create a simple netweaver portal page that shows text and images?

    Hi,
    i have a simple question or maybe it's not so simple.
    I am completly new to SAP Netweaver 2004s Portal. At the moment i'm trying to understand the struture of the whole thing. I already know how to create roles, worksets and pages and i know how to combine the different elements so a user can acces them.
    And now i want to create a simple portal page that shows text and images. Is it possible to create such a simple page with the portal content studio? What iView do i have to use?
    (I just want to create a start page with a welcome text on it.)

    Marc
    Considering that you would any ways go ahead with complex development from this simple start page I recommend create a Web dynpro Iview for your start page (include the Iview in your page).
    For putting the contents use Netweaver Developer studio to build a simple start page application and put your static text on that Iview.
    Please go through the following log after your NWDS development is over - This will make you comfortable for further challenging work.
    http://help.sap.com/saphelp_erp2005/helpdata/en/b7/ca934257a5c96ae10000000a155106/frameset.htm
    Do reward points if this helps and let me know of you want anything more.

  • How can I create a Cell Format in Numbers that doesn't display zeroes?

    I can't figure this out. I need to view numbers in a column decimal aligned. If the number has trailing digits then all trailing zeros need to be removed up to the number of decimals to display. All remaining trailing zeros need to be hidden (not replaced with a space as a space isn't the same with as a digit). Below is a simple example I hacked in Photoshop. The first column shows the real entered value and the right it's displayed value. Note that the cell in red is showing that the trailing zero has been replaced with nothing but the decimal point is still aligned.

    Hi Mike,
    No sign of your photoshopped image, so I'm guessing about what you want here.
    Does this resemble what you're looking for?
    Column B contains the initial entries (made from the keyboard). I wasn't expecting to see the trailing zeroes retained in these.
    All cells in columns C and D contain the formula shown above the table, =B, a simple cell reference to the column B cell on the same row as the formula.
    Column C's format is left as the default "Automatic". As can be seen, all trailing zeroes are removed.
    Cells in column D have had their format set as shown in the Inspector pane to the right of the table.
    The value in these cells is still the same as the value in column B, and that is the value that would be used in any calculations referencing these cells. Formatting affects only the display of the cell contents. What is displayed is the value in the cell, rounded to two decimal places.
    Regards,
    Barry

  • How can I create a one time cron schedule that would execute only once in C#?

    I have used cron schedule in C# to create an application that should trigger a job only once. This code piece is throwing an exception, An unhandled exception of type 'Quartz.SchedulerException' occurred in Quartz.dll
    Below is my code:
    class Program
    static void Main(string[] args)
    Test();
    public static void Test()
    ISchedulerFactory schedulerFactory = new StdSchedulerFactory();
    IScheduler scheduler = schedulerFactory.GetScheduler();
    IJobDetail jobDetail = JobBuilder.Create<SatellitePaymentGenerationJob>()
    .WithIdentity("TestJob")
    .Build();
    Console.WriteLine(DateBuilder.DateOf(16, 30, 00, 24, 2, 2015));
    //ITrigger trigger = TriggerBuilder.Create()
    // .ForJob(jobDetail)
    // .WithCronSchedule("0 0 12 20 4 ? *")
    // .WithIdentity("TestTrigger")
    // .StartNow()
    // .Build();
    ITrigger trigger = TriggerBuilder.Create()
    .WithDescription("Once")
    .WithSimpleSchedule(x => x.RepeatForever().WithRepeatCount(1))
    .StartAt(DateBuilder.DateOf(12, 43, 00, 26, 2, 2015))
    .Build();
    scheduler.ScheduleJob(jobDetail, trigger);
    scheduler.Start();
    internal class SatellitePaymentGenerationJob : IJob
    public void Execute(IJobExecutionContext context)
    Console.WriteLine("test");
    I believe that the way I have done scheduling to be execute only once is causing the issue. Please advice.
    mayooran99

    Hi mayooran99,
    From the additional information: Repeat Interval cannot be zero. The screenshot
    as below.
    You should specify a repeat interval in seconds. 
    Please try the following code
    ITrigger triggers = TriggerBuilder.Create()
    .WithDescription("Once")
    .WithSimpleSchedule(x => x
    .WithIntervalInSeconds(20)
    .RepeatForever())
    .StartAt(DateBuilder.DateOf(12, 43, 00, 26, 2, 2015))
    .Build();
    Have a nice day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How can i  create and access resource file(with .res ext) in j2me

    hi,
    i am developing an mobile international application using jsr-238 an optional api to implement the idea of internationalizationand localization.
    please tell me how can i create .res files in my application to store strings of different languages.thanks inadvance.

    Hello GG RA,
    which fileformat do you want to use (binary or ASCII)?
    There are some LabVIEW shipping examples for File I/O
    You could use the LabVIEW NI Example Finder (Help --> Find Examples..(search item "file")) to get an overview about the different file-formats in LabVIEW.
    Hope this helped out and feel free to reply if you have more questions about File I/O in LabVIEW
    Best regards
    Benjamin

  • How can I create a high res image gallery, need to have print res photos for a pressroom section.

    How can I create a high res image gallery, need to have print res photos for a pressroom section.

    If you want Muse to "pass through" your images and not adjust, compress, crop etc - you need to place your images in the lightbox EXACTLY at the right size, pre-cropped and prepped in Photoshop.
    So if your light box is 800x600 the image you're dropping into that must be 800x600 exactly with no effects, rotation etc added to the lightbox frame. This stop Muse fiddling with your images, if they are perfect when inserted and you're not asking Muse to crop, expand, add effects etc. If it's perfect when inserted, Muse SHOULD also leave the resolution alone too, but I have not tried that one, but in theory, it should work.

  • How can I create side bars without cropping the image?

    I want to create side bars because I am projecting in an vertical panel, but if I crop the image them I only get the middle part of it.
    How can I create side bars in an way that I can still move the image inside?

    On a Video Track directly above the clip(s) you want to have behind the side bars, place a clip of Color (or whatever you want to use for your sidebars).
    Now go to the Effects Tab > Matte >Mask Shape and drag the Mask Shape filter to the Color clip you have placed on the timeline.
    Double click on the clip to open it in the viewer, and click on the Filters Tab.
    Click Invert Box, and adjust the shape to get the side bars you want.
    And now the clip(s) that are beneath this effect will have the side bars and be independent of it, so that you can move them around.
    MtD

  • How can I install photoshop cc on demo mode that was accicedentally uninstalled?

    How can I install photoshop cc on demo mode that was accicedentally uninstalled?. When I try do do it, on adobe creative cloud appears as installed and there is no way to eliminate. Thank you.

    Hi Ernesto Quino,
    Puedes ingresar en www.creative.adobe.com e iniciar sesión con su ID de Adobe y haga clic en la pestaña 'Descargar'.
    Usted encontrará la opción para descargar Photoshop CC.
    gracias
    Kapil

Maybe you are looking for

  • How to get/access Answer requests in BI Publisher

    Team, I am unable to access BI Answer requests through BI Publisher, When I choose the data model as Oracle BI Server, getting a static message as 'BI Catalog Home' and a cancel button. How to get the shared folders list of answer requests in BI Publ

  • Help with buttons and timing

    I have four buttons, each with an advanced action.  Only the first one works.  I know it's related to the button timing, but I can't figure out how to fix it.

  • Pasting multiple cells in Numbers.

    I have been searching all day to figure out how to copy cells from several rows and paste them but have the cells now adjacent to one another. This is possible in Excel (it does it automatically). For example, I have numbers in A1, A11, A21 and I wou

  • How to customize error page

    Hi, Reports 10g. I use a validation trigger for a parameter. When it returns FALSE, I have an error page with REP-546: Invalid parameter input. Is it possible to customize this page ? Change the text for example ? Thank you

  • Power Query DAX sortedrows

    Hi, I'm trying to filter a query using the current year - 5 (to get everything that's only 5 years old).  I've tried a number of functions but continue to get an error.  The UI produces the following statement if I type in a date:  = Table.SelectRows