How to close autosar updater report with programming script?
조회 수: 1 (최근 30일)
이전 댓글 표시
hello guys,i update my autosar model by updateModel(ar,modelName). At the end of update process, a updater report will be opened. I want to close this report by m-scripts.It will be generous of you to provide me api name to complete this function.
Best regard
댓글 수: 0
답변 (1개)
Jinal
2024년 6월 13일
편집: Jinal
2024년 6월 13일
Hi Sasaki,
You can make use of MATLAB's 'closeReport' function to programmatically close the update report that opens after updating the model.
Adding a sample code snippet for your reference:
modelAdvisor1 = Simulink.ModelAdvisor.getModelAdvisor('Model Name');
closeReport(modelAdvisor1);
For more information on 'closeReport', kindly refer the following documentation page: https://www.mathworks.com/help/releases/R2022b/simulink/slref/simulink.modeladvisor.closereport.html
참고 항목
카테고리
Help Center 및 File Exchange에서 AUTOSAR Blockset에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!