Create Help for Custom Model Advisor Checks
You can define help files for your custom Model Advisor checks to make the checks easier to use. Custom help files allow you to verify the check capabilities and avoid potential warnings in the model.
You can define custom help for:
To point the custom check help to a PDF or an HTML page of your choice:
Open the
sl_customization.m
file.Use
setHelp()
on the check or group object created in thesl_customization.m
file.setHelp('format','webpage','path','custom_path');
The supported name-value arguments are:
Format - "
webpage
" , "pdf
"Path - Path of the user-defined help page or document
Example:
checkObj = ModelAdvisor.Check('SimplePassFailCheck'); checkObj.setHelp('format','webpage','path','custom_path');
Close the
sl_customization.m
file.Refresh the customizations by entering:
Advisor.Manager.refresh_customizations
To view the custom help, right-click the custom checks or the folder and click What's This?.