What is the best way to have easy available settings for a MATLAB toolchain

1 visualización (últimos 30 días)
Hi!
I have a sizeable toolchain in MATLAB which is run with some settings, currently defined in a static class that is on the MATLAB path.
I want to change these settings depending on the environment it's running on (for example local vs cluster).
I don't want to have to pass some boolean like 'isCluster' to each function because of how deeply nested the functions are.
Would it be a good idea to initialize a global instance of the settings class in the main script, something like:
global settings = SettingsClass(isCluster)
which would then be accesible everywhere, or is this a risky pattern? Any good suggestions are welcome!

Respuestas (1)

Shiva Kalyan Diwakaruni
Shiva Kalyan Diwakaruni el 11 de Mzo. de 2021
Hi,
You can try typing "matlab -help" or "matlab -h" in your command prompt and it will show list of startup flags , there is a specific startup flag '-r' to which you can pass matlab command , which Start MATLAB and execute the MATLAB_command.
You can also follow the below link where user tries change priorty by changing settings in a file inside matlabroot directory using start command
hope it helps,
thanks

Categorías

Más información sobre Startup and Shutdown en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by