Last active
April 11, 2021 18:11
-
-
Save langheran/e667c3cf11468ce3c757a97ab3593b4d to your computer and use it in GitHub Desktop.
<matlabroot>/toolbox/local/matlabrc.m
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| %MATLABRC Master startup MATLAB script. | |
| % MATLABRC is automatically executed by MATLAB during startup. | |
| % It sets the default figure size, and sets a few uicontrol defaults. | |
| % | |
| % On multi-user or networked systems, the system manager can put | |
| % any messages, definitions, etc. that apply to all users here. | |
| % | |
| % A STARTUP command is invoked after executing MATLABRC if the file 'startup.m' | |
| % exists on the MATLAB path. | |
| % Copyright 1984-2018 The MathWorks, Inc. | |
| if isdeployed || ismcc | |
| % Turn off warnings about built-in not being visible. | |
| warning off MATLAB:predictorNoBuiltinVisible | |
| end | |
| % The MATLABPATH is initialized using PATHDEF prior to executing MATLABRC. | |
| % Builtins and functions reliant on the PATH being initialized may be used | |
| % safely beyond this point. | |
| if ismcc || ~isdeployed | |
| try | |
| % Add installed support packages to the path. | |
| matlab.internal.supportPackages.addInstalledSupportPackagesToPath | |
| catch exc | |
| % Suppress exceptions from add-ons | |
| end | |
| end | |
| % Initialize MATLAB Graphics | |
| matlab.graphics.internal.initialize; | |
| try | |
| % The RecursionLimit forces MATLAB to throw an error when the specified | |
| % function call depth is hit. This protects you from blowing your stack | |
| % frame (which can cause MATLAB and/or your computer to crash). | |
| % The default is set to 500. | |
| % Uncomment the line below to set the recursion limit to something else. | |
| % Set the value to inf if you don't want this protection | |
| % set(0,'RecursionLimit',700) | |
| catch exc | |
| warning(message('MATLAB:matlabrc:RecursionLimit', exc.identifier, exc.message)); | |
| end | |
| % Set default warning level to WARNING BACKTRACE. See help warning. | |
| warning backtrace | |
| % Do not initialize the desktop or the preferences panels for deployed | |
| % applications, which have no desktop. | |
| % Do not initialize default profiler filters since they are not deployable | |
| % either. | |
| if ~isdeployed && ~ismcc | |
| try | |
| % For the 'edit' command, to use an editor defined in the $EDITOR | |
| % environment variable, the following line should be uncommented | |
| % (UNIX only) | |
| %system_dependent('builtinEditor','off') | |
| if usejava('mwt') | |
| initdesktoputils %% init desktop setup code if java is present | |
| end | |
| catch exc | |
| warning(message('MATLAB:matlabrc:InitJava', exc.identifier, exc.message)); | |
| end | |
| % add default profiler filters | |
| try | |
| files = { 'profile.m', 'profview.m', 'profsave.m', 'profreport.m', 'profviewgateway.m' }; | |
| for i = 1:length(files) | |
| fname = which(files{i}); | |
| % if we can't find the profiler files on the path, try the | |
| % "default" location. | |
| if strcmp(fname, '') | |
| fname = fullfile(matlabroot,'toolbox','matlab','codetools',files{i}); | |
| end | |
| callstats('pffilter', 'add', fname); | |
| end | |
| catch exc | |
| warning(message('MATLAB:matlabrc:ProfilerFilters')); | |
| end | |
| try | |
| % Enable the device plugin detection manager. | |
| pl = internal.deviceplugindetection.Manager.getInstance(); | |
| catch | |
| end | |
| end | |
| try | |
| % Text-based preferences | |
| NumericFormat = system_dependent('getpref','GeneralNumFormat2'); | |
| % if numeric format is empty, check the old (pre-R14sp2) preference | |
| if (isempty(NumericFormat)) | |
| NumericFormat = system_dependent('getpref','GeneralNumFormat'); | |
| end | |
| if ~isempty(NumericFormat) | |
| eval(['format ' NumericFormat(2:end)]); | |
| end | |
| NumericDisplay = system_dependent('getpref','GeneralNumDisplay'); | |
| if ~isempty(NumericDisplay) | |
| format(NumericDisplay(2:end)); | |
| end | |
| if (strcmp(system_dependent('getpref','GeneralEightyColumns'),'Btrue')) | |
| feature('EightyColumns',1); | |
| end | |
| catch exc | |
| warning(message('MATLAB:matlabrc:InitPreferences', exc.identifier, exc.message)); | |
| end | |
| try | |
| % Enable/Disable selected warnings by default | |
| warning on MATLAB:namelengthmaxExceeded | |
| warning off MATLAB:mir_warning_unrecognized_pragma | |
| warning off MATLAB:COPYFILE:SHFileOperationErrorID | |
| warning off MATLAB:subscripting:noSubscriptsSpecified %future incompatibity | |
| if ismcc | |
| warning off MATLAB:dispatcher:nameConflict | |
| end | |
| warning off MATLAB:JavaComponentThreading | |
| warning off MATLAB:JavaEDTAutoDelegation | |
| % Random number generator warnings | |
| warning off MATLAB:RandStream:ReadingInactiveLegacyGeneratorState | |
| warning off MATLAB:RandStream:ActivatingLegacyGenerators | |
| % Debugger breakpoint suppressed by Desktop | |
| warning off MATLAB:Debugger:BreakpointSuppressed | |
| warning off MATLAB:class:DynPropDuplicatesMethod | |
| catch exc | |
| warning(message('MATLAB:matlabrc:DisableWarnings', exc.identifier, exc.message)); | |
| end | |
| % Clean up workspace. | |
| clear | |
| % We don't run startup.m from here in desktop MATLAB or deployed apps. In desktop MATLAB | |
| % the request is enqueued before -r command. In deployed apps it is run from mclmcr.cpp | |
| % because they call javaaddpath after running matlabrc.m, which clears the global workspace. | |
| % mcc does not pickup startup.m as a dependency through depfun unless there is a reference to | |
| % it here. There are also issues with mxArray memory handling that need to be addressed. | |
| if ismcc | |
| try | |
| % Execute startup MATLAB script, if it exists. | |
| if (exist('startup','file') == 2) ||... | |
| (exist('startup','file') == 6) | |
| startup | |
| end | |
| catch exc | |
| warning(message('MATLAB:matlabrc:Startup', exc.identifier, exc.message)); | |
| end | |
| end | |
| % Defer echo until startup is complete | |
| if strcmpi(system_dependent('getpref','GeneralEchoOn'),'BTrue') | |
| echo on | |
| end | |
| % Run deployment configuration file only in deployed mode. | |
| if( isdeployed && ~ismcc && exist('deployrc', 'file')) | |
| deployrc; | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.