How do you attach the documentation of your interfaces?
이전 댓글 표시
I would like to know how you allow an end-user to access the documentation (.pdf, .ppt, .doc...) of your MATLAB Interface. For example from the Menu Editor, clicking on the Help Menu will open the related documentation.
Since it is not possible to encrypt and embed with MATLAB compiler a Word document for example , user needs to have the documentation on his path. And then I call the web command for example to open it. The drawback is to always thing about sending end-user both the standalone and the .doc file.
To workaround this drawback , sometimes I write the doc in a string variable directly inside the M-file. Then I call the the msgbox command to make the message to appear in a message box. But it means that the help must be not too long to be displayed on a screen.
Do you have other tricks?
Thanks for sharing your advice and stories !
채택된 답변
추가 답변 (1개)
Friedrich
2011년 8월 4일
2 개 추천
Hi,
why not write the word file on a button click? Read the word file as binary into matlab and save it as an mat file. This file can be attached to the compiler project. During enduser runtime load the mat file and write it back to disk and open it.
댓글 수: 2
Aurelien Queffurust
2011년 9월 15일
Kushal Bhattarai
2015년 1월 23일
I am in a same boat. How do I read the pdf file as binary into matlab and save it as a mat file? what function do I use? and what functions is required write it back to pdf file?
카테고리
도움말 센터 및 File Exchange에서 MATLAB Compiler에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!