Is there a Matlab command to change the custom attributes for requirements like status from the default Unset, so that I don't always have to do this manually via the editor?

2 Ansichten (letzte 30 Tage)
I would like to automatically unlock, change and unlock the user-defined attributes such as the status of the requirement.
Is there a Matlab command for a script-controlled execution (with different commands)?
  2 Kommentare
Jan
Jan am 12 Mai 2022
Maybe it is not immediately clear to the readers, who do not work exactly in your field: "requirements" of what? The screenshot does not reveal this detail.
Katharina Fast
Katharina Fast am 13 Mai 2022
It is generally about the tool Matlab/ Simulink Requirements and Matlab Testing.
The ReqIF data format is available for the exchange of requirements.
This can be imported into Matlab and then the requirements can be linked with Simulink blocks. Tests can also be linked to the requirements.
Importing also provides data points that Matlab does not have and thus stores them as custum attributes.
After they have been manually unlocked, they can also be provided with values or information via a script.
However, since I would like to do the unlocking manually, I am asking for a command that makes this possible.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Pat Canny
Pat Canny am 13 Mai 2022
Thank you for your question!
You can use the unlock method to start, along with setAttribute.
% Load a requirement set file
rs = slreq.load('C:\MATLAB\My_Requirement_Set_1.slreqx');
% Find all referenced requirements in the requirement set
allRefs = find(rs, 'Type', 'Reference')
allRefs =
1×73 Reference array with properties:
Id
CustomId
Artifact
ArtifactId
Domain
UpdatedOn
CreatedOn
CreatedBy
ModifiedBy
IsLocked
Summary
Description
Rationale
Keywords
Type
SID
FileRevision
ModifiedOn
Dirty
Comments
% Unlock a referenced requirement
unlock(allRefs(25))

Produkte


Version

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by