Image-Process [MATLAB]Generating Custom Reports with MATLAB Report Generator

[MATLAB]Generating Custom Reports with MATLAB Report Generator

GUI 또는 코드를 통해 나오는 결과들을 PDF 또는 Word파일로 문서화하여 결과를 얻을 수 있다. 코드는 다음과 같이 참고하면 되며 자세한 내용은 공식문서를 참고하면 된다.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
function fillFirstHole
 
% This function fills the hole “firstHole” in myTemplate.dotx
 
import mlreportgen.dom.*;
 
doc = Document(‘firstDocument’‘docx’‘myTemplate’);
 
holeId = moveToNextHole(doc);
 
fprintf(‘Current hole ID: %s\n’, holeId);
 
textObj = Text(‘Hello World’);
 
append(doc, textObj);
 
close(doc);
 
rptview(‘firstDocument’‘docx’);
 
end
Colored by Color Scripter
 
cs

출처 : 

https://kr.mathworks.com/company/newsletters/articles/generating-custom-reports-with-matlab-report-generator.html

Leave a Reply

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다

Related Post

[MATLAB] Changing colors in 3D Graphs[MATLAB] Changing colors in 3D Graphs

가끔 Figure에 이미지 혹은 Plot 데이터를 서로 다른 Colormap 을이용하여 분석할때 유용한 Coloramp 사용 방법이다. z=5*sin(x).*cos(y); ax1=subplot(2,2,1); mesh(x,y,z) colormap(ax1,parula) title('Default colormap(parula)') ax2=subplot(2,2,2); mesh(x,y,z) colormap(ax2,jet) title('Colormap(jet)') ax3=subplot(2,2,3); colormap(ax3,bone) mesh(x,y,z) title('Colormap(bone)') ax4=subplot(2,2,4);

[MATLAB] MATLAB Runtime[MATLAB] MATLAB Runtime

매트랩 소스코드를 실행파일로 만들어서 실행할 경우 매트랩이 설치되어 있지 않을경우 실행파일이 실행되지 않는 문제점이 있다. 따라서 매트랩이 설치되어 있지 않으면 위와같은 문제점이 일어나는데 매트랩 공식홈페이지에서 제공하는 RUNTIME을 설치하면 쉽게 문제를