I am developing a small programme in Matlab using GUI. How can I generate reports in Matlab?

回答(2 个)

You mean Publish ?

1 个评论

Hello Warrior: Thank you very much for your kind reply. I want to prepare report from the results. For example, the 'uitable' will display the results from the analysis. I want to save the 'uitable results in a separate location and later print it out. How can I do it.

请先登录,再进行评论。

Hello Warrior: Thank you very much for your kind reply. I want to prepare report from the results. For example, the 'uitable' will display the results from the analysis. I want to save the 'uitable results in a separate location and later print it out. How can I do it.

3 个评论

If it is just the uitable's data, you can export it into an excel file. If you have other components, like plot(axes) etc, you can save them as figures.
Eg:
You may have a button to save the data. in the call back function of the button,
%For uitable data
uitable_data=get(handles.uitable,'data');
[sFileName, sPathName] = uiputfile('*.xls', 'Save data as')
sFullFileName=fullfile(sPathName,sFileName)
xlswrite(sFullFileName,uitable_data);
Similarly you can save the axes etc by calling saveas function!
additionally, when you export data into Excel or csv or mat, you can re load the same data by using 'xlsread', 'csvread' and 'load' respectively!!!
Thank you very much. Could you please give me the code for writing the output in 'mat table'. My idea is that the user should save the output in matlab table and print it out later..

请先登录,再进行评论。

类别

帮助中心File Exchange 中查找有关 Workspace Variables and MAT Files 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by