关于matlab使用mosek的安装问题和解决方法

关于matlab使用mosek的安装问题和解决方法

1、关于lisence放在哪儿?
默认的查找路径是
Search path : C:\Users\Administrator\mosek\mosek.lic

2、Warning: MOSEK Fusion is not configured correctly; check that mosek.jar is added to the javaclasspath.
在matlab 的Command Window 窗口输入javaaddpath(‘C:\Program Files\Mosek\7\tools\platform\win64x86\bin/mosekmatlab.jar’)

3、You can verify that MOSEK works by executing:
mosekdiag

4、mosek 7 支持matlab r2009b ,matlab r2012a,matlab r2013a

5、相关链接:

Installation:
http://docs.mosek.com/7.0/toolbox/Installation.html

The MOSEK optimization toolbox for MATLAB manual:
http://docs.mosek.com/7.1/toolbox/index.html

6、路径C:\Program Files\Mosek\7\toolbox\r2013a中,

mex文件 :这是matlab下使用的一种特殊的函数封装形式。这种函数一般是用C/C++语言编写的,在使用的时候也像一个普通m文件一样按照文件名调用,只是不可能看到源码。按照matlab的调用顺序规则,mex比m有更高的优先级,即只会调用RmatAtoB.mexa64而不调用RmatAtoB.m。
只不过,mexa64是linux64位下编译和使用的版本,不能在windows下用。windows64位下编译的是mexw64。

你可能感兴趣的:(MATLAB)