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 9070013
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 16, 20262026-06-16T17:34:40+00:00 2026-06-16T17:34:40+00:00

Say I’ve got a function that evaluates to: function test_timer() a = timer ;

  • 0

Say I’ve got a function that evaluates to:

function test_timer()
a = timer ;
set(a, 'executionMode', 'fixedRate','TimerFcn','disp(rand)')
start(a)

end

..and I’ve accidentally left out ‘stop(a)’ within the function’s clause.
How do you stop the timer object (or all timer objects) from running without closing MATLAB using the command window?

  • 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-06-16T17:34:41+00:00Added an answer on June 16, 2026 at 5:34 pm

    You can use timerfind to find the timers you would like to stop.

    Like this:

    tmr = timer('Name', 'timer1', 'TimerFcn', @(x,y)disp('Timer running'));
    start(tmr);
    stop(timerfind('Name', 'timer1'));
    

    You can basically search any property you can define in timer function.

    EDIT: You can use the delete function to delete the timers.

    Let’s create a couple of timers to find and delete them:

    tmr1=timer('Name', 'timer1', 'Period', 5, 'TimerFcn', @(x,y)disp('Timer 1 running'));
    tmr2=timer('Name', 'timer2', 'Period', 5, 'TimerFcn', @(x,y)disp('Timer 2 running'));
    start(tmr1);
    start(tmr2);
    tmrList=timerfind('Period', 5); % Find the timers whose periods are 5 seconds.
    stop(tmrList);
    timerfind
    
    Timer Object Array
    
       Index:  ExecutionMode:  Period:  TimerFcn:               Name:
       1       singleShot      5        1x1 function_handle arraytimer1
       2       singleShot      5        1x1 function_handle arraytimer2
    
    
    delete(tmrList);
    timerfind
    
    ans =
    
         []
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Say that my images are simple shapes - set of lines, dots, curves, and
Say I have a SSI script that uses exec, or a PHP script that
Say I have that kind of a table COMMAND XCODE YCODE 1.INPUT 1000 1001
Say I have this function (assume I'm accessing Cache in a threadsafe way): object
Say I have a simple WCF application that the client calls in order to
Say I have 2 buttons in an Element and I want to set the
Say that I have a web user control that has several drop down lists
Say I have a project that I am deploying at www.foo.com/path1/default.aspx and www.foo.com/path2/default.aspx What
say I have a function: public List<Car> GetFourWheelDrives() { return dataContext.Cars.Where(c => c.IsFourWheelDrive ==
Say you built a recommendation engine that would recommend you live TV shows for

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.