File created using Matlab File Generator is empty (0 bytes)
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
stefan Chytra
am 28 Apr. 2021
Kommentiert: stefan Chytra
am 28 Apr. 2021
Hi,
Its the first time I have used matlab report generator & think I am following the very simple online video but the file I save is empty.
The very simple code I am using is;
import mlreportgen.report.*
R=Report('Simple','pdf')
open("R")
surf(peaks)
add(R,Figure)
Can some please help?
Thankyou
Stefan
0 Kommentare
Akzeptierte Antwort
Weitere Antworten (1)
Jan
am 28 Apr. 2021
Bearbeitet: Jan
am 28 Apr. 2021
Taken from the documentation:
import mlreportgen.report.*
import mlreportgen.dom.*
R=Report('Simple', 'pdf')
surf(peaks)
add(R, Figure)
close(R);
% Now you can view the report:
rptview(rpt)
I assume, your open("R") opens the empty report directly after the creation.
Siehe auch
Kategorien
Mehr zu MATLAB Report Generator finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!