How to open help doc in a Window rather than browser?
Show older comments
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:

Accepted Answer
More Answers (2)
Shin
on 16 Dec 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 Comments
Bruno Luong
on 18 Dec 2024
Good tip, thanks
Dahu
on 18 Dec 2024
it works well, thanks
Fabre François
on 22 Dec 2024
Thank you for the tip !
Adam Danz
on 26 Dec 2024
Just a heads up that this will soon no longer work.
YAMAN
on 11 Jan 2025
it realy works. great thanks
Duncan Barclay
on 8 Feb 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
on 10 Feb 2025
AnaelG
on 27 Feb 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
on 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 Comments
Gerrik
on 17 Dec 2025
Noooo. WHYYYYYYYY!!!!!!
Adrien
on 18 Dec 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
Categories
Find more on Help and Support in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!