Construct Timer using evalin

2 次查看(过去 30 天)
I am working on a gui and I want to make a timer in workspace. I use this command but it occured error:
evalin('base','Timer=timer');
evalin('base',['Timer.Name=' 'Timer01']); It cannot change timer name. Please help me.

采纳的回答

Daniel Shub
Daniel Shub 2011-7-21
Creating the timer in the base workspace may make sense, if you really want the variable Timer to be there, but it is not likely what you want to do. Timer objects are handle objects and you can create the object in one workspace and then get the object with timerfindall from any workspace.
There is no reason that you need to rename the timer object in the base workspace. You can find the object in your current workspace and rename it there.
Even better would be to rename the timer when you create it
evalin('base','Timer=timer(''Name'', ''Timer01'')');
  1 个评论
Milad Javan
Milad Javan 2011-7-21
Finally I use timerfindall function. It's better than my method. Thanks alot.

请先登录,再进行评论。

更多回答(1 个)

Chirag Gupta
Chirag Gupta 2011-7-21
evalin('base','Timer.Name = ''test123''');
You need to escape '
  2 个评论
Milad Javan
Milad Javan 2011-7-21
Thank for your answer it works.
Walter Roberson
Walter Roberson 2011-7-21
Wouldn't assignin(base, 'Timer.Name', 'test123')
be more straight-forward ?

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Startup and Shutdown 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by