getAll
Class: cv.cvdatagroup
Namespace: cv
Get all
cvdata
objects in cvdatagroup
object
Description
returns the covDataArray
= getAll(cvdg
)cvdata
objects in the cv.cvdatagroup
object cvdg
.
returns the covDataArray
= getAll(cvdg
,simMode
)cvdata
objects that have simulation mode
simMode
.
Input Arguments
cvdg
— Coverage data group
cv.cvdatagroup
object
Coverage data group, specified as a cvdatagroup
object.
Data Types: cv.cvdatagroup
simMode
— Simulation mode
"Normal"
| "SIL"
| "PIL"
| "ModelRefSIL"
| "ModelRefPIL"
| "ModelRefTopSIL"
| "ModelRefTopPIL"
Simulation mode that corresponds to one or more cvdata
objects in the cv.cvdatagroup
object, specified as one of the following:
Object Specification | Description |
---|---|
| Model in normal simulation mode. |
| Model in software-in-the-loop (SIL) or processor-in-the-loop (PIL) simulation mode. |
| Model reference in software-in-the-loop (SIL) or processor-in-the-loop (PIL) simulation mode. |
| Model reference in software-in-the-loop (SIL) or processor-in-the-loop (PIL) simulation mode with the code interface set to the top model. |
If the function does not find a match, it returns an empty array. If the function finds multiple matches, it returns a cell array.
Data Types: char
| string
Output Arguments
covDataArray
— Coverage data
cell array
Coverage data, returned as a cell array of cvdata
objects. If you specified simMode
,
covDataArray
contains only coverage data that
matches simMode
.
Data Types: cell
Examples
Get Coverage Data from cvdatagroup
Objects
This example shows how to retrieve a specified coverage data object, all coverage data objects, or all coverage data object names from a cv.cvdatagroup
object.
Load the example model.
modelName = 'slvnvdemo_eml_model_coverage_demo';
load_system(modelName);
Use the Simulink.SimulationInput
class to set up the simulation scenario with coverage enabled.
simIn = Simulink.SimulationInput(modelName); simIn = setModelParameter(simIn,'CovEnable','on'); simIn = setModelParameter(simIn,'CovMetricStructuralLevel','MCDC'); simIn = setModelParameter(simIn,'CovSaveSingleToWorkspaceVar','on'); simIn = setModelParameter(simIn,'CovSaveName','covData'); simIn = setModelParameter(simIn,'CovSaveOutputData','off');
Simulate the model by passing the SimulationInput
object to the sim
function, and then retrieve the coverage data from the SimulationOutput
object.
simOut = sim(simIn); covData = simOut.covData
covData = ... cv.cvdatagroup slcoverageExternalFile (simulation mode: Normal) slvnvdemo_eml_model_coverage_demo (simulation mode: Normal)
The example model contains a MATLAB® Function block that calls an external MATLAB function. Because Simulink Coverage returns the coverage data for the MATLAB function in a separate cvdata
object, sim
returns a cv.cvdatagroup
object that contains the coverage results for both the model and the MATLAB function.
To determine the name associated with each cvdata
object inside the cv.cvdatagroup
, use the class method allNames
.
covDataNames = allNames(covData)
covDataNames = 2x1 cell array {'slcoverageExternalFile' } {'slvnvdemo_eml_model_coverage_demo'}
The cv.cvdatagroup
contains the coverage results for the model as well as the MATLAB function.
To retrieve the coverage data for the model, use the get
class method.
modelCovData = get(covData,modelName)
modelCovData = ... cvdata version: (R2024b) id: 882 type: TEST_DATA test: cvtest object rootID: 884 checksum: [1x1 struct] modelinfo: [1x1 struct] startTime: 06-Sep-2024 01:20:11 stopTime: 06-Sep-2024 01:20:11 intervalStartTime: intervalStopTime: simulationStartTime: 0 simulationStopTime: 1 filter: simMode: Normal
To retrieve coverage data for both the model and the external file, use the getAll
class method.
covDataArray = getAll(covData)
covDataArray = 2x1 cell array {1x1 cvdata} {1x1 cvdata}
Version History
Introduced in R2007b
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Select a Web Site
Choose a web site to get translated content where available and see local events and offers. Based on your location, we recommend that you select: .
You can also select a web site from the following list
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.
Americas
- América Latina (Español)
- Canada (English)
- United States (English)
Europe
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)
Asia Pacific
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)