Check if a script has been run during this session
Mostrar comentarios más antiguos
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.
Respuesta aceptada
Más respuestas (1)
Jan
el 4 de Sept. de 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.
Categorías
Más información sobre Get Started with MATLAB en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!