2018年3月28日 星期三

如何查詢 MATLAB 程式使用的工具箱

第一招

There are a couple of things to try and consider. First, you can run code on a machine that has the necessary products (e.g. a trial version) and after running the code execute:
license('inuse')
第二招
matlab.codetools.requiredFilesAndProducts will list all the toolboxes used in the m script.
Check this documentation link: