How to modify or set index number when importing requirements from Microsoft Excel document?
51 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
JinWook Park
le 26 Nov 2024 à 2:24
Commenté : JinWook Park
le 26 Nov 2024 à 6:05
hello.
When I import requirements into excel, I want to modify or set the number of indexes, but I get a message that the index number cannot be modified.
Please let me know how I can modify the Idnex number.
0 commentaires
Réponse acceptée
Angelo Yeo
le 26 Nov 2024 à 4:25
Modifié(e) : Angelo Yeo
le 26 Nov 2024 à 4:28
You can use some custom attributes of slreq.import to specify requirement hierarchy from command line. Below is an example.
slreq.import('ReproductionMod.xlsx', ...
'match', '\d[\.\d]*', 'summaryColumn', 4, 'rows', [2 21], ...
'descriptionColumn', 5, 'columns', [1 9], ...
'attributes', {'OrigID', 'State', 'Element', 'ASIL', 'OrigRevision', 'TraceStatus'}, ...
'attributeColumn', [2 3 6 7 8 9])
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Import, Update, and Export Requirements dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!