Is it possible to use (publish) markup inside nested functions
Mostrar comentarios más antiguos
Hi all,
I have the following function
function test1
%%Individual sample reports
reportSample;
%%overall summary
reportSummary
function reportSample
for i = 1 : 5
disp( [ '<html><h3>sample ' num2str( i ) '</h3><hr></html>' ] );
end
end
function reportSummary
disp( [ '<html><h3>summary</h3><hr></html>' ] );
end
end
When I attempt to publish this function this yields the following report

The problem is that the heading 'overall summary'appears directly after the heading 'Individual summary reports' even though the html referencing the individual summaries has not been published. Is it possible to force the publishing of the contents of the nested functions so that the correct ordering is achieved, i.e. the individual report summaries come before the overall summary?
Best wishes,
John
1 comentario
John Anderson
el 16 de Ag. de 2016
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre MATLAB Report Generator en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
