Using slwebview command in matlab command line with -automation interface
이전 댓글 표시
Hello,
Currently , i am facing a scenario wherein i need to use Matlab Report Generator to export simulink models to a web view. I want to achieve this with matlab command line or report generator command line interface using.rpt files.
Any help is greatly appreciated.
Thanks Prabhakar.
댓글 수: 2
Jon Boerner
2014년 10월 15일
If you are just trying to create a webview, slwebview is definitely the way to go. You can call that from the command-line for an open model, and also specify that it should not open the web view if you do not want it to:
load_system('my_system');
slwebview('my_system','ViewFile',false);
close_system('my_system');
I assume you want something different than this, but am not sure exactly what you are looking for. If you can give the above code a try and let me know what is wrong with it (or what the difference in behavior is between that code and what you are trying to do), I would be happy to take another look.
Prabhakaran
2014년 10월 24일
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Create Model Web Views에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!