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

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

Sign in to comment.

Answers (1)

Angelo Yeo
Angelo Yeo on 25 Jan 2024
Edited: Angelo Yeo on 25 Jan 2024
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'}

Categories

Find more on 시작과 종료 in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!