What to use instead of xy graph?

Hello

I am new to the sight of laboratory and have a little problem to display data.

I want to display the phase versus frequency.

I want to add a new point to the curve at each iteration and want the old datapoints are always displayed. Overall, it should work as in the example I have attached.

But it would be nice that whenever I have stop the vi and relaunch that old data is no more.

So, how can I do this with the xy graph? Is there another way to do? I tried the cards, but I was not able to change the frequency x scale.

Thanks a lot for your help.

Did you look at my example?

You must place the shift in the outermost regions register loop so it initializes only once. FOR loop you still absolutely insane,

Alternatively, you can also use a feedback node initialized in the world.

Tags: NI Software

Similar Questions

  • What to use instead of Adobe Flash with Safari

    Hello, after reading about Flash I uninstalled it on my computer. Now when I go on a site that uses Adobe Flash, what can I use instead? I use Chrome and it plays the video on sites requiring Adobe Flash as Safari can not play. Chrome, what makes that Safari does not? Both Chrome and Safari are the latest versions for OS X 10.11.2

    Best regards, John

    Use Chrome when you visit sites that require Flash Player.

    Chrome browser comes with Flash Player plugin that is not integrated, Safari.

  • What to use instead of cs4

    HII!

    I am interested in this online course: Master Web Design in Photoshop | Udemy

    According to the description I need cs4 or upward. From what I found, cs4 is no longer available. (My knowledge on this is pretty non-existent so I may be wrong)

    Would I be able to follow this course with CC (elements + lightroom)?

    I know that this is not the place to ask, but I sent messages to the person who teaches the course, but I have yet to receive a response.

    I hope someone has an answer for me, thanks in advance!

    You can use the photographers ($10 us / mo) for photoshop and lightroom, creative cloud and membership pricing plans | Adobe Creative Cloud and follow this course.  (but the course is out of date).

  • What plugin should I use instead of Unity Web Player? Firefox you disabled due the vunerabilities but my videos don't play well.

    Already reset Firefox, been restart Firefox at least twice a day. Now I see Unity Web Player has been disabled. So, what are you going to make us use instead of UWP?

    I have updated Unity Player 4.3.7f1 after I noticed that a previous version, when I noticed that an earlier version of the unit has been disabled by Firefox. The entry for the plug-in has more red alert on the unit are disabled because it is dangerous, but it is also always never 'enable '.

    How can I find out the current state of security safe/not of this plug in?

  • I used to write in two languages (English and Italan). When I use my Mac, it's easy: I just change the language, and my keyboard is the same (i.e., International English). What I use my iPad pro, instead, he also spends my hardware keyboard.

    I used to write in two languages (English and Italan). When I use my Mac, it's easy: I just change the language, and my keyboard is the same (i.e., International English). What I use my iPad pro, instead, he also spends my physical keyboard, so that for example if I type [keyboard I get an e. It is very annoying and makes the keyboard quite useless. Keeping fixed language I would get bad suggested words.

    You will need to define your physical layout being the same for English and Italian in settings > general > keyboard > keyboard > keyboard material

  • What gossipyshe program that I use instead of adobe

    What programs to use instead of flash and reader

    If you want to view Flash video using Adobe Flash. Only get Flash from the official Adobe site. https://get.Adobe.com/flashplayer/

    Are what 'reader' you referring?

  • Windows Live Mail Desktop - is it deprecated and what to do instead of the other use?

    It doesn't seem to be any forum covering WLMD that maybe says

    My WLMD version is dated 2009 and I am wrong to believe he has not been updated since then - is it obsolete and do any other use instead?

    Watch it again...

    Sending and receiving mail (synchronization in Windows Live Mail) [i.e., not Windows LiveHotmail]
    http://windowslivehelp.com/forums.aspx?ForumID=b91657c9-9031-4406-a398-7d0783119bb7

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

  • Hotel Web does not for formmail cgi script. What should I use instead, and how to run it?

    Hello

    I'm close tothey done with my new site of clslow and just found out that his webhotel does not offer the simple cgi-script I usually use

    Any suggestions that I can use instead (I guess PHP and it's Greek to me...), but how do I do it?

    Address on the site and the actual page is here: http://www.kennelmannequins.se/ToftaBilII/servicebokning.html (it is in Swedish, so don't be scared if you don't understand the language)

    I hope you can help me!

    Carolin

    Try NateMail or ProcessForm from the link below. Both come with a simple step by step pdf, set up the guide.

    The two are old enough but will get the job done.

    http://www.MindPalette.com/archives/ProcessForm/

  • What should I use instead of cellPress in the DataGrid

    It seems that the cellPress event is what you used in AS2.0. I can't find an equivalent function in AS3.0. I got a lot more like that in a non editable dataGrid.

    From Beta 3, you should be able to get the information you want for the itemClick event. This event is available on all elements of list based as TileList, DataGrid, list, etc.

  • SimpleCallbackHandler Jdev obsolete 11.1.1.4 - what to use

    Jedv 11.1.1.4

    Hello
    I'm 'migration' our application Jdev 11.1.1.2 11.1.1.4
    The application uses a jspx login page and a bean of connection as described in the Fusion Middleware Developer's guide.

    I just compiled the application, and I get a warning saying that SimpleCallbackHandler is obsolete.
    I checked the online help of the bean connection (http://download.oracle.com/docs/cd/E17904_01/web.1111/b31974/adding_security.htm#BABDEICH)
    and the code example always use SimpleCallbackHandler:
    1 public String doLogin() {
    2   String un = _username;
    3   byte[] pw = _password.getBytes();
    4   FacesContext ctx = FacesContext.getCurrentInstance();
    5   HttpServletRequest request =
    6     (HttpServletRequest)ctx.getExternalContext().getRequest();
    7   CallbackHandler handler = new SimpleCallbackHandler(un, pw);
    8   try {
    9     Subject mySubject = Authentication.login(handler);
    10     ServletAuthentication.runAs(mySubject, request);
    11     ServletAuthentication.generateNewSessionID(request);
    12     String loginUrl = "/adfAuthentication?success_url=/faces" + 
    13       ctx.getViewRoot().getViewId();
    14     HttpServletResponse response = 
    15       (HttpServletResponse)ctx.getExternalContext().getResponse();
    16     sendForward(request, response, loginUrl);
    17   } catch (FailedLoginException fle) {
    18     FacesMessage msg = new FacesMessage(FacesMessage.SEVERITY_ERROR,
    19                                        "Incorrect Username or Password",
    20                                        "An incorrect Username or Password" +
    21                                        " was specified");
    22     ctx.addMessage(null, msg);
    23   } catch (LoginException le) {
    24     reportUnexpectedLoginError("LoginException", le);
    25   }
    26   return null;
    27 }
    What are we supposed to use instead of SimpleCallBackHandler?

    Thanks in advance
    Paul

    Andrejus Baranovsky has a blog about this entry...

    http://andrejusb.blogspot.com/2010/11/things-you-must-know-about-ADF-faces.html

    Timo

  • Which should be used instead of a Source of landslide Collection

    Hello

    I'm currently trying to generate the sample application TUHRA2 as described in "Oracle JDeveloper 11g Handbook: A Guide to Oracle Fusion Web development»
    At a point (page 759 to be precise), I am asked to drop a Collection drag Source in a table and setting the action property as a 'COPY' and the ModelName as 'empImagesModel '. The problem is that this component has apparently ceased to exist in JDeveloper 11.1.1.2.0 and JDeveloper 11.1.1.3.0.
    What should I use instead? "I had a look at the component called simply""Source" Drag ", but this component is not a property ModelName. Any suggestions?

    Kind regards

    Andreas

    Hello

    Use af:dragSource and use the attribute "discriminating".

    Frank

  • Should what I use to simulate the tabbed browsing

    Hello

    Should what I use to simulate the tabbed browsing? I have three tabs, and I would like a different status (in a box sliced under the tabs) depending on which tab I clicked. Clicked is the key word because the behaviors that I tried to swap the images on rotation, which is not what I'm looking for.

    And on a related issue, when I joined behaviors to a hotspot vs. a slice? I think this may be part of my problem.

    Thank you very much.

    Well, I've been able to determine what the problem was myself after much trial and error.

    In the dialog box Swap Image (behaviors panel > double-click behavior) I had chosen the slice which ended the tab instead of the range of the target that is on the lower part of the page. Once I chose the correct target slice, everything worked.

  • I'm unable to empty a jpg of the Trash because the element is used. How can I find what is using the element?

    I'm unable to empty a jpg of the Trash because the element is used. How can I find what is using the element?

    option of command, escape on the keyboard and then on the force quit button for all applications listed

    then empty the trash

  • the cutting tool - what is it and what is used?

    I open, that needs to be done or what is used for = explain it please

    '

    Hello

    Windows 7 has also the capture tool that allows custom, a window or full
    Save the screen.

    Start - type in the search box-> find Snipping Tool at the top of the list and double-click it.

    Windows 7 - features - Snipping Tool
    http://Windows.Microsoft.com/en-us/Windows7/products/features/Snipping-Tool

    Windows 7 - features - Snipping Tool
    http://Windows.Microsoft.com/en-in/Windows7/products/features/Snipping-Tool

    Windows 7 - the cutting tool
    http://www.Microsoft.com/Windows/Windows-7/features/Snipping-Tool.aspx

    Use capture tool to capture screenshots - Vista
    http://Windows.Microsoft.com/en-us/Windows-Vista/use-Snipping-Tool-to-capture-screen-shots

    Use capture tool to capture screenshots - Windows 7
    http://Windows.Microsoft.com/en-us/Windows7/use-Snipping-Tool-to-capture-screen-shots

    The cutting tool: frequently asked questions
    http://Windows.Microsoft.com/en-us/Windows7/Snipping-Tool-frequently-asked-questions

    ------------------------------------------------------------------------------------------

    For ALT-PrtScr or PrtScr make sure caps lock key operation is in the correct position.

    How to create a screenshot with Windows 7 Paint
    http://www.SevenForums.com/tutorials/9717-screenshot-paint.html

    Take a screen capture (print your screen)
    http://Windows.Microsoft.com/en-us/Windows7/take-a-screen-capture-print-your-screen

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle=""><- mark="" twain="" said="" it="">

  • now that xp is outdated, which is a good or better browser to use ie or firefox ect... chrome is what Im using now, but this is no longer supported

    * Original title: browser in xp?

    now that xp is outdated, which is a good or better browser to use ie or firefox ect... chrome is what Im using now but it is not supported anymore thanks in advance

    Support for XP ended almost 2 years ago.  As you have seen, the software developers third release improvements to their products that no longer work with XP.  The writing on the wall for some time: "Move to a new operating system."

    It is my understanding that Google has extended support of Chrome for XP until this April.  http://www.Express.co.UK/life-style/science-technology/618584/Google-chrome-browser-support-Windows-XP-Vista

    For now, Firefox will run on XP sp2 or later, and opera will also run on XP or later.  As far as I know, Mozilla or Opera announced at support XP will disappear.

    However, even though these browsers will have the latest versions of their own code - unlike IE, which provides only for XP support through IE 8 - a web browser is only as
    safe"as its underlying operating system.  For XP, it is not so sure.

Maybe you are looking for

  • Satellite L500: cannot change display Multiple to play via the TV

    After following the instructions to connect the computer to the TV via HDMI there is no signal. Followed the instructions in the user manual, butUser manual said to go to adjust properties/display resolution/advanced/GenericPnPMonitor/graphics proper

  • Measures of tension with usb-6210

  • GuestEndpoints ISE Cisco and licensing

    Small question. If a device is placed in the Group GuestEndpoint automatically through the Hotspot portal in 2.0 of ISE. If we do strategies based on group identity GuestEndpoint should I use a license? I know this license is used if we pass through

  • Why Photoshop won't save anything?

    For some reason any Photoshop can't save anything. I use the old version of CS6. He worked previously, but one day when he went kaput. When I go to save something, no dialog box appears, and Photoshop is a little frozen. I can click to put the Photos

  • Cs6 versus CS4

    DearI have cs4 in English and I want to buy cs6 in Dutch will be I have no problem with the photos please.Thank you very muchSerge