Main Content

setMetricFamilyParameterValues

Class: slmetric.config.Configuration
Namespace: slmetric.config

(To be removed) Obtain compliance and issues metric data on your Model Advisor configuration

The Metrics Dashboard user interface, metricdashboard function, slmetric package API, and corresponding customizations will be removed in a future release. For more information, see Migrating from Metrics Dashboard to Model Maintainability Dashboard.

Syntax

setMetricFamilyParameterValues(config,... 'ModelAdvisorStandard', values)

Description

Use the Model Advisor Configuration Editor to create groups of Model Advisor checks or use a shipped check group. Then, use the setMetricFamilyParameterValues(config,... 'ModelAdvisorStandard', values) method to obtain compliance and issues data for this group and any other groups that you specify as part of the values input. Compliance data is the percentage of passed checks. Issues data is the number of check issues. The values input sets the groups that are members of the family that you associate with a particular slmetric.config.Configuration object.

Input Arguments

expand all

slmetric.config.Configuration object to add check groups for which to obtain compliance and issues data.

Standard string that you must supply as an input.

Specify Check Group IDs for each group of Model Advisor checks for which to obtain compliance and issues metric data. Obtain the Check Group IDs by opening up the Model Advisor Configuration Editor and selecting the folder that contains the group of checks. The Check Group ID parameter is in the folder.

Examples

expand all

Obtain compliance and issues data on the Modeling Standards for MISRA C:2012, MAB, and High-Integrity Systems check groups.

Open the default configuration.

config = slmetric.config.Configuration.open();

Specify the metric family parameter ID, famParamID, and the metric family parameter values, values. The values maab and hisl_do178 correspond to subsets of MAAB checks and High-Integrity System checks. The MISRA value _SYSTEM_By Task_misra_c is the Check Group ID for the MISRA check group Modeling Standards for MISRA C:2012.

famParamID = 'ModelAdvisorStandard';
values = {'maab', 'hisl_do178', '_SYSTEM_By Task_misra_c'};
setMetricFamilyParameterValues(config, famParamID, values); 

To obtain the Model Advisor Check Group ID for a group of checks, open the Model Advisor Configuration Editor and select the desired folder of checks. The Check Group ID is shown in the Information tab. For more information on the Model Advisor Configuration Editor, see Use Model Advisor Configuration Editor to Customize Model Advisor.

Save the new configuration.

config.save('FileName', 'MetricConfig.xml');

Set the active Metrics Dashboard configuration.

slmetric.config.setActiveConfiguration(fullfile(pwd, 'MetricConfig.xml'));

For more information, see Customize Metrics Dashboard Layout and Functionality.

Version History

Introduced in R2018b

collapse all

R2022a: Metrics Dashboard will be removed

The Metrics Dashboard user interface, metricdashboard function, slmetric package API, and corresponding customizations will be removed in a future release. For more information, see Migrating from Metrics Dashboard to Model Maintainability Dashboard.