Export Matlab Plots into sheet

2 ビュー (過去 30 日間)
Valentino
Valentino 2015 年 3 月 25 日
回答済み: Valentino 2015 年 8 月 6 日
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.

採用された回答

Valentino
Valentino 2015 年 8 月 6 日
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...

その他の回答 (2 件)

David Sanchez
David Sanchez 2015 年 3 月 25 日
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 2015 年 4 月 27 日
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 件のコメント
Valentino
Valentino 2015 年 4 月 27 日
The size of my data is changing. But thank you anyway
Image Analyst
Image Analyst 2015 年 4 月 27 日
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.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSpreadsheets についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by