MATLAB 2023b Can not open apps made in MATLAB 2023b, and startup error

조회 수: 17 (최근 30일)
Ryan
Ryan 2024년 2월 2일
댓글: Ryan 2024년 2월 5일
Hi there,
When matlab 2023b opens, it shows this in the console
And then when I tried to open a matlab app in the app designer, it would not open or run. Even if I made an app in the 2023b app designer, saved it, and tried to open it with the 2023 app designer again. I was getting this error:
and in the console
  댓글 수: 6
Walter Roberson
Walter Roberson 2024년 2월 2일
pd = prefdir();
newpd = pd + ".old";
movefile(pd, newpd);
Ryan
Ryan 2024년 2월 2일
Okay i cleared out the folder, restarted matlab, and same error.

댓글을 달려면 로그인하십시오.

채택된 답변

Benjamin Kraus
Benjamin Kraus 2024년 2월 4일
편집: Benjamin Kraus 2024년 2월 4일
I would check for errors in your startup.m or pathdef.m.
Specifically, what is the output from:
which -all pathdef
Compare that to the output from these two commands:
userpath
matlabroot
  • You should see at least one output from which -all pathdef, and that file should be located in your matlabroot.
  • You may see another output from which -all pathdef, and that second copy might be located in your userpath. If you see a copy of pathdef.m located in your userpath, then there is a chance you have a pathdef.m that is either corrupted, or based on an old release of MATLAB (and incompatible with a new release of MATLAB). If you find a copy of pathdef.m inside your userpath, my recommendation would be to delete or rename that copy, so that MATLAB starts using the version that is part of the MATLAB installation.
If that doesn't work, then I would try this next:
which -all startup
  • If you see any output from which -all startup, then check that file to see if it is doing anything that might be adding or removing things from the path.
If that doesn't work, you can try:
restoredefaultpath
rehash toolboxcache
savepath
See if that resolve the issue, but note that running savepath could create a new copy of pathdef.m that will work now, but won't work the next time you update MATLAB.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Startup and Shutdown에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by