How to open help doc in a Window rather than browser?

73 visualizaciones (últimos 30 días)
磊
el 3 de Oct. de 2024
Editada: Farshid el 12 de Mzo. de 2025
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:

Respuesta aceptada

Bruno Luong
Bruno Luong el 3 de Oct. de 2024
  9 comentarios
Bruno Luong
Bruno Luong el 3 de Oct. de 2024
Yes removing a user option is not really a progress IMO.
Craig
Craig el 2 de En. de 2025
I agree 100% with @Bruno Luong, this "feature" of removing the Matlab Help Browser and using an Internet browser is not at ALL helpful as one can no longer highlight lines in the help browser and click F9 to execute them. This rates right up there with removing the "do not wrap" feature in the editor replace function; removing the current percent zoomed readout box in imtool; and eliminating the zoom/pan icons from figure box toolbar. Perhaps Mathworks has hired too many former Microsoft employees and is now making non-useful "improvements".

Iniciar sesión para comentar.

Más respuestas (1)

Shin
Shin el 16 de Dic. de 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 comentarios
AnaelG
AnaelG el 27 de Feb. de 2025
Exactly what we needed! Thanks!
Farshid
Farshid el 12 de Mzo. de 2025
Editada: Farshid el 12 de Mzo. de 2025
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.
Thank you @Shin for the help!

Iniciar sesión para comentar.

Categorías

Más información sobre Platform and License en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by