How to open help doc in a Window rather than browser?
조회 수: 125 (최근 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.
![](https://www.mathworks.com/matlabcentral/discussions/uploaded_files/35799/image.png)
Like this:
![](https://www.mathworks.com/matlabcentral/discussions/uploaded_files/35800/image.png)
댓글 수: 0
채택된 답변
Bruno Luong
2024년 10월 3일
댓글 수: 9
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
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.
댓글 수: 7
Duncan Barclay
2025년 2월 8일 15:11
@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
2025년 2월 10일 14:19
참고 항목
카테고리
Help Center 및 File Exchange에서 Entering Commands에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!