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

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!