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

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 Center および File Exchange시작과 종료 についてさらに検索

タグ

製品

Community Treasure Hunt

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

Start Hunting!