Check if a script has been run during this session

10 views (last 30 days)
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.

Accepted Answer

the cyclist
the cyclist on 4 Sep 2021
Edited: the cyclist on 4 Sep 2021
Your command history is stored in an XML file, in your preferences directory. See this question/answer for details.

More Answers (1)

Jan
Jan on 4 Sep 2021
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.

Categories

Find more on Entering Commands in Help Center and File Exchange

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!