Is there an established way to use configuration files for a deployed MATLAB application?

I am working with a MATLAB project and want to be able to customize variables and paths without having to recreate an executable file (currently performed using the MATLAB built-in deployment tool). I understand that I can create a simple text file by specifying key = value pairs and reading this at runtime. There seems to be no built-in support in MATLAB for creating configuration files that follow standard formats.

Are there standard ways to use configuration files for executables generated by MATLAB?

+5
source share
1 answer

1) DeployTool
2) :

fullfile(ctfroot(),'config.txt');

. , "private", . . "" , , , .

+2

All Articles