gurobi和matlab

1、在用gurobi,忙的时候会忘记用这个,结果有的东西会忘掉。记录一下,做个笔记。

2、首先调用gurobi给出的matlab例子,结果一运行,就会出现如下错误:
在这里插入图片描述
怎么解决?

找到gurobi提供的help文档,发现了如下代码:

在这里插入图片描述

3、每次运行之前,都运行一下。当然,可以addpath加进去,这个以后再说。

注释:运行完以后,有提示,原来没有看过,现在注意了一下,似乎告诉我们可以保存path,不用以后每次都运行一次,因此可以试试

The directory
C:\gurobi801\win64\matlab
has been added to the MATLAB path.
To use Gurobi regularly, you must save this new path definition.
To do this, type the command
savepath
at the MATLAB prompt. Please consult the MATLAB documentation
if necessary.

4、最终结果:

直接运行savepath,看结果

a = savepath
a =
0
再看help文件的说明

savepath Save the current MATLAB path in the pathdef.m file.
savepath returns:
0 if the file was saved successfully
1 if the file could not be saved

5、等明天的结果,看看是否可以运行gurobi。

你可能感兴趣的:(最优化)