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

현재 매트랩으로 만든 코드를 다른 곳에서 새로 매트랩을 구매하여 사용하고자 합니다. 그런데 이 코드를 사용하기 위해서 기본 매트랩 외에 어떤 툴박스나 제품을 구매해야 하는지 알 수가 없습니다. 작성한 코드를 실행하기 위해 필요한 구매목록을 확인하는 방법이 있을까요?

1 Kommentar

madhan ravi
madhan ravi am 25 Okt. 2018
Upload the picture of the code so that we can tell you which toolboxes you need

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Angelo Yeo
Angelo Yeo am 25 Jan. 2024
Bearbeitet: Angelo Yeo am 25 Jan. 2024

0 Stimmen

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'}

Kategorien

Mehr zu 시작과 종료 finden Sie in Hilfe-Center und File Exchange

Produkte

Gefragt:

am 25 Okt. 2018

Bearbeitet:

am 25 Jan. 2024

Community Treasure Hunt

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

Start Hunting!