How to open help doc in a Window rather than browser?
Afficher commentaires plus anciens
Matlab 2024b。
I have installed help doc and rebooted Matlab.
However, whether I choose to open in a small window or in the help browser, it will only open in the browser.

Like this:

Réponse acceptée
Plus de réponses (2)
Shin
le 16 Déc 2024
This setting is persistent across restarts.
Revert the old help browser instead of opening the documentation in the system browser by entering the following code into the MATLAB console
s = settings;
s.matlab.help.SystemBrowserForDoc.PersonalValue = {};
You can revert this setting by entering the following code into the MATLAB console
s = settings;
if(hasPersonalValue(s.matlab.help.SystemBrowserForDoc))
clearPersonalValue(s.matlab.help.SystemBrowserForDoc);
end
Please be mindful that the latter option employs undocumented behavior which might change at any point after a product update.
9 commentaires
Bruno Luong
le 18 Déc 2024
Good tip, thanks
Dahu
le 18 Déc 2024
it works well, thanks
Fabre François
le 22 Déc 2024
Thank you for the tip !
Adam Danz
le 26 Déc 2024
Just a heads up that this will soon no longer work.
YAMAN
le 11 Jan 2025
it realy works. great thanks
Duncan Barclay
le 8 Fév 2025
@Adam Danz not having is a definite regression - what will be the alternative in the future? My workflow is complex with many different IDEs open (embedded code, FPGA systems etc.) at once and containing help etc. into their own IDEs is a must to keep my head sane. I constantly refer to the MATLAB docs within MATLAB - I do not want to have to switch to a browser - that may have other stuff happening it in.
Adam Danz
le 10 Fév 2025
AnaelG
le 27 Fév 2025
Exactly what we needed! Thanks!
This really mixes things up! I keep many browser windows open for different things. This means that my help docs open in different browser windows. I contacted tech support to express my view as @Adam Danz suggested. I suggest people to do the same.
Adrien
le 11 Nov 2025
1 vote
The integrated help browser has been removed since the 2024 version.
They made the choice to crowd another window which the user might use for themself...
That's why I stick to the 2023 version.
2 commentaires
Gerrik
le 17 Déc 2025
Noooo. WHYYYYYYYY!!!!!!
Adrien
le 18 Déc 2025
I believe it's because they're pushing for javascript (for at least 10 years) and now they want to unify all systems (macOS, windows & web).
https://fr.mathworks.com/matlabcentral/discussions/general/883224-podcast-what-s-behind-the-big-change-in-the-new-matlab-desktop
Catégories
En savoir plus sur Startup and Shutdown dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
