Export Matlab Plots into sheet

2 views (last 30 days)
Valentino
Valentino on 25 Mar 2015
Answered: Valentino on 6 Aug 2015
Hi guys, I want to make a Sheet(which can be opened without Matlab) where my plots a saved. For example i got 3 plots and want them in one sheet. For sure i don't want to copy the plots or something i want the plots automatically written in my sheet, so that i just have to run my code and have my sheet with the data plots.
Thank you for your help.

Accepted Answer

Valentino
Valentino on 6 Aug 2015
Solved it by using subplot and then print.
See my Code
subplot('Position',pos.pos7)
plot(true_stress,true-strain)
subplot('Position',pos.pos3)
plot(stress,strain)
subplot('Position',pos.pos4)
plot(stress,displacement)
print(hfig,'Datasheet','-dpdf')
Don't forget to define the positions...

More Answers (2)

David Sanchez
David Sanchez on 25 Mar 2015
You can do something like this:
Define options to customize the published output as a structure, options_doc_nocode.
options_doc_nocode.format = 'doc';
options_doc_nocode.showCode = false;
Publish the file, specifying the options structure.
publish('your_script_name_here.m',options_doc_nocode);
Take a look at the publish function and its options:
doc publish

Image Analyst
Image Analyst on 27 Apr 2015
If you know the size of your data will always be constant, you can make up an Excel file where the plots always refer to certain cell locations, like, say, A1:B:300, C1:D300, and F1:G200. Then have MATLAB write the data into those cell locations. Then the plots will automatically use the data you put in there.
  2 Comments
Valentino
Valentino on 27 Apr 2015
The size of my data is changing. But thank you anyway
Image Analyst
Image Analyst on 27 Apr 2015
Well it's still possible but you might need to use ActiveX to either create the plots or change the ranges of plots already embedded in the workbook. I don't know the exact ActiveX methods - you'd have to look them up. In the meantime, attached is an ActiveX demo for reading and writing to Excel. It's useful if you have to read and write multiple times to the same or multiple workbooks. It will be very much faster than calling xlsread() and xlswrite() multiple times, which required a launch and shutdown of Excel everytime they're called.

Sign in to comment.

Community Treasure Hunt

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

Start Hunting!