how to convert generated model advisor check report which is in html file into PDF format using m script? I am using MATLAB 2020a version
Mostrar comentarios más antiguos
I did model advisor checks and generated reports. Generated reports are in html format by default. I need to convert html file into PDF.
Respuestas (1)
Vishesh
el 28 de Nov. de 2022
- You can use "ModelAdvisor.run()" for generating report.
- For the Windows operating system, the supported formats are 'pdf', 'html', and 'word'. For UNIX like operating systems, the only supported format is 'html'.
- For generating report in "pdf" format in Windows, use Name-value argument "ReportFormat" as "pdf" as shown below.
ModelAdvisor.run(model, checkIDs,'ReportFormat', 'docx', 'ReportPath', pwd, 'ReportName', 'myReport');
3 comentarios
Shilpashree
el 28 de Nov. de 2022
Vishesh
el 28 de Nov. de 2022
- You can refer to the following documentation : ModelAdvisor.run().
Categorías
Más información sobre Simulink Report Generator en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!