Why do I get the warning "MATLAB:dispatcher:InexactCaseMatch Cannot find an exact (case-sensitive) match for 'startup'" on MATLAB startup?
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
MathWorks Support Team
el 31 de Mayo de 2018
Editada: Bill Tubbs
el 20 de Sept. de 2020
On startup the following message is displayed:
Warning: Executing startup failed in matlabrc.
This indicates a potentially serious problem in your MATLAB setup, which should
be resolved as soon as possible. Error detected was:
MATLAB:dispatcher:InexactCaseMatch
Cannot find an exact (case-sensitive) match for 'startup'
The closest match is: Startup in C:\Users\timdu\Documents\MATLAB\StartUp.m
Respuesta aceptada
MathWorks Support Team
el 6 de Nov. de 2019
The startup file MATLAB searches for is case sensitive.
In order to resolve this issue, the current 'StartUp.m' file should be renamed to 'startup.m'.
0 comentarios
Más respuestas (1)
Bill Tubbs
el 20 de Sept. de 2020
Editada: Bill Tubbs
el 20 de Sept. de 2020
For me the problem started after I added a path to a module that I am using for a course. The scripts in this module are launched using a script called 'Startup.m' and I was told to add its directory to the Matlab path (which I did using addpath).
So, to fix it I did this:
rmpath('/Users/billtubbs/gel-7063/SimulPro')
savepath
and now I do not get the warning at startup.
Presumably the Matlab system also uses a file called 'startup.m' somewhere and therefore you must never create a file with that name and permanently add it to the path.
0 comentarios
Ver también
Categorías
Más información sobre Startup and Shutdown en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!