Borrar filtros
Borrar filtros

Check if a script has been run during this session

15 visualizaciones (últimos 30 días)
Rob Hurt
Rob Hurt el 4 de Sept. de 2021
Editada: the cyclist el 4 de Sept. de 2021
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

the cyclist
the cyclist el 4 de Sept. de 2021
Editada: the cyclist el 4 de Sept. de 2021
Your command history is stored in an XML file, in your preferences directory. See this question/answer for details.

Más respuestas (1)

Jan
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 Entering Commands en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by