How do I import requirements from Jama into Requirements Toolbox?

조회 수: 6 (최근 30일)
Pat Canny
Pat Canny 2024년 3월 25일
답변: Pat Canny 2024년 3월 25일
I have a set of requirements in Jama. How do I import them into MATLAB?

채택된 답변

Pat Canny
Pat Canny 2024년 3월 25일
You can import ReqIF formatted requirements, which you export from Jama, in two ways:
First, you can use the Import workflow via the Requirements Editor UI. Simply follow the instructions documented here.
You can also do this programmatically using the slreq.import API from Requirements Toolbox.
Here is a simple example, using a dummy ReqIF file named "dJamaHLRwithLinks.reqif"
slreq.clear;
reqIFFileName = "dJamaHLRwithLinks.reqif";
[~,~,newReqSet] = slreq.import(reqIFFileName);
slreq.open(newReqSet.Filename);

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Automotive에 대해 자세히 알아보기

제품


릴리스

R2024a

Community Treasure Hunt

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

Start Hunting!

Translated by