Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 233967
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T20:08:48+00:00 2026-05-11T20:08:48+00:00

I have a MATLAB GUI and a separate application that writes data to a

  • 0

I have a MATLAB GUI and a separate application that writes data to a file.
I’d like my MATLAB GUI to check the file periodically, and update the GUI when it changes.

In Java, I’d use a SwingUtils.Timer(sp?) object to do something like this. Does MATLAB have timer functionality? I could write a java class and do it I suppose, but want something quick and dirty for a demo, preferably pure MATLAB.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T20:08:48+00:00Added an answer on May 11, 2026 at 8:08 pm

    You can create timer objects in MATLAB using the TIMER function. For example, this creates a timer object which should execute the function myFcn once every 10 seconds after the timer is started:

    timerObject = timer('TimerFcn',@myFcn,'ExecutionMode','fixedRate',...
                        'Period',10.0);
    

    Timers are started and stopped using the functions START and STOP. You should also always remember to delete them with DELETE when you’re done using them. You can find more info on using timers in the MATLAB documentation.

    It is worth noting, that if you are wanting to update axes object in a GUIDE GUI, there’s an additional bit of “trickery” needed to make this work. You must either change the HandleVisibility property of the axes object in GUIDE, or you must explicitly acquire the handle. To do this, change the timerObject construction as follows (This is assuming the axes window in your GUIDE generated GUI is called axes1):

    timerData.axes = handles.axes1;
    timerData.n    = 1;                  % some state needed for the plots.
    timerObject = timer('TimerFcn',@myFcn,...
                        'ExecutionMode','fixedRate',...
                        'Period',10.0,...
                        'UserData', timerData);
    

    then in myFcn, we need to reference the axes object. Specifically:

     function [] = myFcn(timerObj, event)
         timerData = get(timerObj, 'UserData');
         plot(timerData.axes, (1:n)/n, sin(20*2*pi*(1:n)/n));
         line( (1:n)/n, cos(20*2*pi*(1:n)/n, 'Parent', timerData.axes);
         timerData.n = timerData.n + 1;
         set(timerObj, 'UserData', timerData);
     end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 118k
  • Answers 118k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer The contents of the memory taken by local variables is… May 11, 2026 at 11:39 pm
  • Editorial Team
    Editorial Team added an answer You can't change it at the moment. But according this… May 11, 2026 at 11:39 pm
  • Editorial Team
    Editorial Team added an answer The explicit solution to your problem is to cast the… May 11, 2026 at 11:39 pm

Related Questions

I have a matlab timer object. It is updating a global variable FOO once
Using the GUI guide editor in Matlab 2008b, I have run into a problem
I have an assignment to create a GUI using MATLAB GUIDE and am having
For my side job as programmer, I need Windows. It will be installed in

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.