按照Xilinx的作风,Vivado只支持最近两年3个版本的Matlab,当前最新版vivado 2018.3只支持2017a,2017b,2018a,连matlab 2018b都不支持
System Generator需要的新特性,matlab2016可能不支持,matlab2018b肯定是都支持的,所以没必要卸载matlab2018b安装matlab2018a,Mathworks已经给出了解决办法:
编辑这个xml文件,C:\Xilinx\Vivado\2017.2\data\sysgen\sg_config\ml_supported.xml,添加你的Matlab版本就行。
<!-- This file used by System Generator and the System Generator Matlab Configurator -->
<productinfo>
<supported_versions>
<version>
<number>9.2</number>
<name>R2017a</name>
</version>
<version>
<number>9.3</number>
<name>R2017b</name>
</version>
<version>
<number>9.4</number>
<name>R2018a</name>
</version>
</supported_versions>
那么问题来了,怎么知道我的Matlab2018b版本是多少呢?
控制面板告诉你!打开Windows控制面板,你卸载软件的地方,看图:
在上面的xml文件里加上:
<version>
<number>9.5</number>
<name>R2018b</name>
</version>
关闭System Generator,在开始菜单里面重新打开它
现在Matlab不再是Unsupported,而是Not Configured,勾选它,然后Apply就行