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

144 次查看(过去 30 天)
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:

采纳的回答

Bruno Luong
Bruno Luong 2024-10-3
  9 个评论
Craig
Craig 2025-1-2
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".

请先登录,再进行评论。

更多回答(1 个)

Shin
Shin 2024-12-16
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 个评论
Farshid
Farshid 2025-3-12,14:37
编辑:Farshid 2025-3-12,14:37
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!

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Entering Commands 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by