How do you attach the documentation of your interfaces?
Ältere Kommentare anzeigen
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 !
Akzeptierte Antwort
Weitere Antworten (1)
Friedrich
am 4 Aug. 2011
2 Stimmen
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 Kommentare
Aurelien Queffurust
am 15 Sep. 2011
Kushal Bhattarai
am 23 Jan. 2015
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?
Kategorien
Mehr zu MATLAB Compiler finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!