slreq.generateReport() -- unrecognized method, property or field...
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Chris Paredis
am 3 Feb. 2021
Kommentiert: Chris Paredis
am 4 Feb. 2021
According to the R2020b documentation, there should be a method for Simulink Requirements Sets called generateReport:
When I try to use it, I get the error:
Unrecognized method, property, or field 'generateReport' for class 'slreq.ReqSet'.
Is the documentation ahead of the release?
0 Kommentare
Akzeptierte Antwort
Leo
am 4 Feb. 2021
Hi Chris,
Would you mind pasting the code snippet you used here? It looks like the prefix 'slreq' in the front of generateReport is missing.
For example:
reqSet = slreq.load('myReqSet.slreqx');
slreq.generateReport(reqSet);
But if the following command is used:
generateReport(reqSet);
this kind of error will be thrown.
Thanks,
ZQ
1 Kommentar
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Author Requirements finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!