Export Matlab Plots into sheet

조회 수: 1 (최근 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 CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by