MATLAB: MoveToNextHole in Report Generator does not compile.

MATLAB Report Generatormovetonexthole

I am using Matlab 2015b 32bit with Report Generator and compiler. moveToNextHole does not compile in the following example from the user guide:
======
function makerpt(title,author,content,rptname,rpttemplate) import mlreportgen.dom.* rpt = Document(rptname,'docx',rpttemplate);
while ~strcmp(rpt.CurrentHoleId,'#end#')
switch rpt.CurrentHoleId
case 'Title'
append(rpt,title);
case 'Author'
append(rpt,author);
case 'Content'
append(rpt,content);
end
moveToNextHole(rpt);
end
close(rpt);

Best Answer

To be compilable, a MATLAB application that uses the DOM API must invoke makeDOMCompilable() before invoking any DOM function. See makeDOMCompilable.