GUI 또는 코드를 통해 나오는 결과들을 PDF 또는 Word파일로 문서화하여 결과를 얻을 수 있다. 코드는 다음과 같이 참고하면 되며 자세한 내용은 공식문서를 참고하면 된다.
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
cs |
출처 :
'Programming > MATLAB' 카테고리의 다른 글
[MATLAB] MATLAB Runtime (0) | 2020.04.24 |
---|---|
[MATLAB] Changing colors in 3D Graphs (0) | 2019.06.18 |
[MATLAB] OVERLAYING BINARY MASKS ON IMAGES IN MATLAB (0) | 2019.05.31 |
[MATLAB] MATLAB Theme 적용 (0) | 2019.04.02 |
[MATLAB] Imfreehand Roi Image (0) | 2019.03.12 |