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

90 ビュー (過去 30 日間)
磊 雷
磊 雷 2024 年 10 月 3 日
コメント済み: YAMAN 2025 年 1 月 11 日 14:49
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 件のコメント
Bruno Luong
Bruno Luong 2024 年 10 月 3 日
Yes removing a user option is not really a progress IMO.
Craig
Craig 2025 年 1 月 2 日 20:08
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.
  5 件のコメント
Adam Danz
Adam Danz 2024 年 12 月 26 日 13:31
Just a heads up that this will soon no longer work.
YAMAN
YAMAN 2025 年 1 月 11 日 14:49
it realy works. great thanks

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeHelp and Support についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by