Check if a script has been run during this session

7 次查看(过去 30 天)
Hello,
I have an initialization script called activate.p that needs to be run before I can send commands to the instrument I'm using. I want to put an if statement at the beginning of all my data acquisition scripts that checks whether activate.p has been run during the current Matlab session, and runs it if not.
Is there a function to store the command history of the current session as an array that I can then check to see if it includes activate.p? I found the commandhistory command, but this doesn't return anything.

采纳的回答

the cyclist
the cyclist 2021-9-4
编辑:the cyclist 2021-9-4
Your command history is stored in an XML file, in your preferences directory. See this question/answer for details.

更多回答(1 个)

Jan
Jan 2021-9-4
Create your own function:
function myActivate
persistent called
if isempty(called)
activate();
caslled = true;
end
end
Now simply call myActivate from any function, which requires that activate ran before.
This catchs even the evil clear all.

类别

Help CenterFile Exchange 中查找有关 Entering Commands 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by