필터 지우기
필터 지우기

Newbie Question about MATLAB Report Generator

조회 수: 3 (최근 30일)
Kevin
Kevin 2021년 11월 12일
댓글: Kevin 2021년 11월 12일
Hi everyone,
I am learning how to MATLAB Report Generator to generate PDF file. I am following the magic squares example in the documentation.
Once I have the variable "rpt", I have tried to generate PDF file using this command:
report(rpt)
Q1: The above command always generates the PDF in the current folder. How do I change the folder?
Q2: If I delete the PDF file and run the above command a second time, it does not generate the PDF file. Is this expected.
Thanks

답변 (1개)

Kevin
Kevin 2021년 11월 12일
After playing around with my matlab script a bit more, then I realize that my original question doesn not make sense.
It turns out that it is these lines that will create the pdf file (maybe 0 byte).
rpt = mlreportgen.report.Report([mfilename('fullpath'), '.pdf']);
tp = mlreportgen.report.TitlePage;
tp.Title = 'Magic Squares';
tp.Subtitle = 'Columns, Rows, Diagonals: All Equal Sums';
tp.Author = 'Albrecht Durer';
append(rpt,tp);
Then it is the line that creates the final PDF file
close(rpt)
Am I correct?
  댓글 수: 2
Sean de Wolski
Sean de Wolski 2021년 11월 12일
That looks right to me. I'd encourage you to look at the task examples:
Kevin
Kevin 2021년 11월 12일
Hi Sean,
Thank you very much. The link is very useful.
Kevin

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 MATLAB Report Generator에 대해 자세히 알아보기

제품


릴리스

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by