that there should exist a documention function in Matlab. That supports you to present the results in a pdf or html format. The question now is there such things and how do I find it. I tried to search online without luck. Thanks eactor

link|improve this question
Closed because of cross-post (with accepted answers) at stackoverflow.com/questions/4912829/… – DMA57361 Feb 6 '11 at 19:11
feedback

closed as too localized by DMA57361 Feb 6 '11 at 19:10

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

2 Answers

I'm not quite sure what you're looking for, but the diary command may do the trick. This logs all output from the program to a plaintext file. The syntax is pretty simple:

diary filename.txt % Sets the log file to filename.txt and starts logging
diary off % disables diary mode; output is no longer logged
diary on  % re-enables diary mode. The previously set file is used

For more elaborate details, see MATLAB's documentation.

link|improve this answer
sounds good, but there has do be something to arrange plots and stuff like that – eactor Feb 6 '11 at 11:52
feedback

Found it with the help of stackoverflow http://stackoverflow.com/questions/4912829/matlab-documentation-function

the key word is report tool

link|improve this answer
1  
I'm glad you figured this out, but please be aware that cross-posting the same question on multiple sites is discouraged. In the future, please choose the stack exchange site most appropriate for your question and ask there, don't ask on every site that might possibly have an answer for you. – nhinkle Feb 6 '11 at 19:07
sry, i wasn't sure which would be the right one. – eactor Feb 7 '11 at 0:02
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.