Export Matlab Plots into sheet
조회 수: 1 (최근 30일)
이전 댓글 표시
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.
댓글 수: 0
채택된 답변
추가 답변 (2개)
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
댓글 수: 0
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
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 Exchange에서 ActiveX에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!