makeDOMCompilable() is not recognized
Show older comments
I get an error when I try to generate a report using rptgen and mcc. My code and the error are copied below. I have scanned all available documentation and older questions but have not been able to find a solution. Please help.
This code runs fine through Matlab:
function createReport()
if ismcc || isdeployed
% Make sure DOM is compilable
makeDOMCompilable();
end
import mlreportgen.dom.*
import mlreportgen.report.*
filename = sprintf('Buffer Job %d', 123);
rpt = Report(filename,'pdf');
p = Paragraph('Buffer Static Test Report');
add(rpt,p);
close(rpt);
end
This is the error I get when I run the executable:

2 Comments
Steven Lord
on 11 Aug 2020
Which release of MATLAB, MATLAB Report Generator, and MATLAB Compiler are you using?
Nabeel Ahmad
on 12 Aug 2020
Accepted Answer
More Answers (0)
Categories
Find more on Introduction to Installation and Licensing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!