Set default documentation location programmatically in R2021A

14 visualizaciones (últimos 30 días)
Marco Riani
Marco Riani el 1 de Abr. de 2021
Comentada: Aldo Corbellini el 17 de Dic. de 2021
Starting in R2021a, when you run MATLAB with an internet connection, the Help browser displays the web documentation by default. When you run MATLAB on a system without an internet connection, or if your internet connection becomes unavailable, the Help browser displays the installed documentation instead.
To change the default documentation location, on the Home tab, in the Environment section, click Preferences. Select MATLAB > Help and change the Documentation Location.
I would like to know what is the code to change the documentation location programmatically.
I thought it was something like
com.mathworks.mlservices.MLHelpServices.setDocCenterDomain
but I could not find it
Thank you in advance
Marco

Respuestas (1)

Anmol Dhiman
Anmol Dhiman el 7 de Abr. de 2021
Hi Marco,
This is controlled by the matlab.help.DocCenterLocation setting. The valid values are "WEB" or "INSTALLED":
>> s = settings;
>> s.matlab.help.DocCenterLocation.PersonalValue = 'WEB';
Please note that this not a documented functionality and might not work in future releases.
Hope it Helps
  8 comentarios
Gian23
Gian23 el 21 de Abr. de 2021
This is just to confirm that the instruction:
s.matlab.help.DocCenterLocation21a.PersonalValue='INSTALLED'
or
s.matlab.help.DocCenterLocation21a.TemporaryValue ='INSTALLED'
does not take effect immediately. I'm using Matlab 2021a on a Mac OSX.
Thanks in advance
Aldo Corbellini
Aldo Corbellini el 17 de Dic. de 2021
I confirm that for some unknow reason, the following property:
s.matlab.help.DocCenterLocation21a.PersonalValue='INSTALLED'
or
s.matlab.help.DocCenterLocation21a.TemporaryValue ='INSTALLED'
works only if you restart MATLAB. It would be nice if this was not necessary.
It also would be nice if this instant effect could become a feature request in a future MATLAB release.

Iniciar sesión para comentar.

Categorías

Más información sobre Introduction to Installation and Licensing en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by