작성한 코드 실행을 위해 필요한 툴박스 확인하는 방법

조회 수: 16 (최근 30일)
BeomSeok Kim
BeomSeok Kim 2018년 10월 25일
편집: Angelo Yeo 2024년 1월 25일
현재 매트랩으로 만든 코드를 다른 곳에서 새로 매트랩을 구매하여 사용하고자 합니다. 그런데 이 코드를 사용하기 위해서 기본 매트랩 외에 어떤 툴박스나 제품을 구매해야 하는지 알 수가 없습니다. 작성한 코드를 실행하기 위해 필요한 구매목록을 확인하는 방법이 있을까요?
  댓글 수: 1
madhan ravi
madhan ravi 2018년 10월 25일
Upload the picture of the code so that we can tell you which toolboxes you need

댓글을 달려면 로그인하십시오.

답변 (1개)

Angelo Yeo
Angelo Yeo 2024년 1월 25일
편집: Angelo Yeo 2024년 1월 25일
matlab.codetools.requiredFilesAndProducts 를 이용하면 스크립트를 돌리기 위해 필요한 툴박스를 출력해주는 것으로 확인됩니다.
[fList,pList] = matlab.codetools.requiredFilesAndProducts('edge.m'); % 'edge.m' is from Image Processing Toolbox
{pList.Name}'
ans = 2×1 cell array
{'MATLAB' } {'Image Processing Toolbox'}

카테고리

Help CenterFile Exchange에서 시작과 종료에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!