• 数学建模Matlab之优化类方法


    本文还是来源于http://t.csdnimg.cn/P5zOD,但肯定不可能只有这些内容,否则那位作者应该会打我……,在这里,只是讲解优化类问题比较常用的方法,以TSP问题为例,适合入门。


    模拟退火

    模拟退火是一种概率算法,它从某个解出发,随机产生下一个解,并根据一定的准则来接受或拒绝新解,同时随着迭代的进行逐渐降低“温度”。

    基础示例 

    1. %% 模拟退火
    2. clc,clear
    3. % 模拟退火(求最小)。模拟退火是一种概率算法,它从某个解出发,随机产生下一个解
    4. % 并根据一定的准则来接受或拒绝新解,同时随着迭代的进行逐渐降低“温度”。
    5. temperature = 100; % 初始温度,开始时较高以接受更多的解。
    6. final_temperature = 1; % 算法停止的最低温度。
    7. time_temperature = 1; % 用来计算当前温度下已经迭代了多少步,作用类似于计数器。
    8. time_tuihuo = 10; % 退火步长,是每个温度下的迭代步数。
    9. cooling_rate = 0.95; % 是每次降温的比率。
    10. % 初始化随机数生成器,以使结果具备可重复性
    11. % rng(0,'twister');
    12. % 生成范围a-b的随机数
    13. a = -10; b = 10;
    14. % rang_math = (b-a).*rand(1000,1) + a;是初始解。
    15. rang_math = (b-a).*rand + a;
    16. % 定义函数,求最小值
    17. f = @(x)(x.^4 + 4.*x.^3 - x.^2);
    18. current_old = f(rang_math);
    19. while final_temperature < temperature
    20. rang_math = (b-a).*rand + a; % 随机数
    21. current_new = f(rang_math); % 生成新解
    22. diff = current_new - current_old; %diff 是新旧解的差值。
    23. % 使用 Metropolis 准则来决定是否接受新解。
    24. %如果新解比旧解好(即 diff<0)或者满足一定的概率(rand < exp(-diff/(temperature))),则接受新解。
    25. if(diff<0)||(rand < exp(-diff/(temperature)))
    26. route = rang_math;
    27. current_old = current_new;
    28. time_temperature = time_temperature + 1;
    29. end
    30. % 当在一个温度下迭代了 time_tuihuo 步之后,降低温度 (temperature = temperature * cooling_rate)。
    31. if time_temperature == time_tuihuo
    32. temperature = temperature * cooling_rate;
    33. time_temperature = 0;
    34. end
    35. end
    36. plot([a:b],f([a:b])); % 原函数图像
    37. hold on;
    38. plot(route,current_old,'ko', 'linewidth', 2); % 作解的图像

    这段代码是使用模拟退火算法来找到一个函数的最小值。其中,基础部分涉及到匿名函数:

    在 MATLAB 中,当你创建一个匿名函数时,你必须使用 . 进行点乘或点除等运算,以确保每个元素都被单独操作。而且你应该使用 .*./.^ 而不是 *, /, 和 ^。此外,您应该避免使用未定义的变量和符号。下面是你给出的函数的一些可能的正确形式。

    1.使用 .*.^ 进行点乘和点幂运算:

    f = @(x)(x.^4 + 4.*x.^3 - x.^2);

    2.如果你想进行标量操作(而不是数组操作),你可以直接使用 *^,但这种情况下 x 只能是一个标量,而不是一个数组:

    f = @(x)(x^4 + 4*x^3 - x^2);

    上图结果表明找到了函数的近似最小值,不一定是全局最优解哦,只能说比较接近。优化类方法都是这样,都是满足结果在一个正确合理的范围就行。


    模拟退火求解TSP问题

    1. % 实际操作
    2. citys = [
    3. 1304 2312;
    4. 3639 1315;
    5. 4177 2244;
    6. 3712 1399;
    7. 3488 1535;
    8. 3326 1556;
    9. 3238 1229;
    10. 4196 1004;
    11. 4312 790;
    12. 4386 570;
    13. 3007 1970;
    14. 2562 1756;
    15. 2788 1491;
    16. 2381 1676;
    17. 1332 695;
    18. 3715 1678;
    19. 3918 2179;
    20. 4061 2370;
    21. 3780 2212;
    22. 3676 2578;
    23. 4029 2838;
    24. 4263 2931;
    25. 3429 1908;
    26. 3507 2367;
    27. 3394 2643;
    28. 3439 3201;
    29. 2935 3240;
    30. 3140 3550;
    31. 2545 2357;
    32. 2778 2826;
    33. 2370 2975;
    34. ];
    35. save('citys_data.mat', 'citys');% 使用 save 命令将数据保存为 .mat 文件:
    36. % 导入数据
    37. load citys_data.mat
    38. % 初始化参数
    39. temperature = 1000;
    40. final_temperature = 1;
    41. cooling_rate = 0.995;
    42. time_temperature = 1;
    43. time_tuihuo = 100;
    44. % 初始化路径
    45. route = 1:31;
    46. current_dist = total_distance(route, citys);
    47. % 存储每次迭代的距离
    48. distances = [];
    49. while temperature > final_temperature
    50. for i = 1:time_tuihuo
    51. % 随机交换两个城市的位置来产生新的路径
    52. new_route = swapCities(route);
    53. new_dist = total_distance(new_route, citys);
    54. diff = new_dist - current_dist;
    55. % 使用 Metropolis 准则来决定是否接受新路径
    56. if (diff < 0) || (rand < exp(-diff / temperature))
    57. route = new_route;
    58. current_dist = new_dist;
    59. time_temperature = time_temperature + 1;
    60. end
    61. end
    62. % 存储当前的总距离
    63. distances = [distances, current_dist];
    64. % 降温
    65. temperature = temperature * cooling_rate;
    66. end
    67. % 输出最终结果
    68. disp('最终的路径:');
    69. disp(route);
    70. fprintf('最短的总距离:%.4f\n', current_dist);
    71. % 绘制最终路径
    72. figure;
    73. plot(citys(:,1), citys(:,2), 'o'); % 绘制城市
    74. hold on;
    75. % 绘制路径
    76. for i = 1:(length(route)-1)
    77. plot([citys(route(i), 1), citys(route(i+1), 1)], ...
    78. [citys(route(i), 2), citys(route(i+1), 2)], 'k-');
    79. end
    80. % 绘制从最后一个城市到第一个城市的路径
    81. plot([citys(route(end), 1), citys(route(1), 1)], ...
    82. [citys(route(end), 2), citys(route(1), 2)], 'k-');
    83. hold off;
    84. title('最终路径');
    85. % 绘制迭代曲线图
    86. figure;
    87. plot(distances);
    88. title('迭代过程中的总距离变化');
    89. xlabel('迭代次数');
    90. ylabel('总距离');
    91. %下面是两个函数,注意一定要重新创建函数文件啊!
    92. % 计算总距离的函数
    93. function dist = total_distance(route, citys)
    94. dist = 0;
    95. for i = 1:(length(route)-1)
    96. dist = dist + sqrt(sum((citys(route(i),:) - citys(route(i+1),:)).^2));
    97. end
    98. dist = dist + sqrt(sum((citys(route(end),:) - citys(route(1),:)).^2));
    99. end
    100. % 随机交换两个城市的位置的函数
    101. function new_route = swapCities(route)
    102. idx = randperm(length(route), 2);
    103. new_route = route;
    104. new_route(idx(1)) = route(idx(2));
    105. new_route(idx(2)) = route(idx(1));
    106. end

    结果:


    蚁群算法

    蚁群算法简介

    蚁群算法 (Ant Colony Optimization, ACO) 是一种启发式搜索算法,灵感来源于现实世界中蚁群的觅食行为。在自然界中,蚂蚁通过释放一种称为信息素的化学物质来找到食物源,并通过这些信息素的浓度来引导其他蚂蚁。该算法模拟了这种行为。

    蚁群算法和模拟退火的区别

    1. 基本原理:

      • 蚁群算法是通过模拟蚂蚁寻找食物的行为来找到最优路径。
      • 模拟退火是通过不断地在当前解的邻域中随机选取新的解,再根据某种准则来决定是否接受这个新解。
    2. 搜索策略:

      • 蚁群算法利用多个搜索点(蚂蚁)同时进行搜索,并通过信息素来交流信息。
      • 模拟退火通常从一个解开始,并在每个步骤中进行小的随机改变。
    3. 信息传递:

      • 蚁群算法中,蚂蚁通过信息素进行信息交流。
      • 模拟退火则没有这种信息交流机制
    4. 适用问题:

      • 蚁群算法主要用于解决组合优化问题,如TSP。
      • 模拟退火可以应用于广泛的优化问题,包括组合优化和连续优化问题。

    蚁群算法求解TSP

    在应用蚁群算法求解TSP(旅行商问题)时,每一只蚂蚁都代表一种可能的路径。蚂蚁在路径上释放信息素,而后续的蚂蚁根据信息素的浓度来选择路径。最终信息素浓度最高的路径被认为是最优路径

    1. %% 蚁群算法求解TSP问题
    2. % 计算城市间相互距离
    3. n = size(citys,1);
    4. D = zeros(n,n);
    5. for i = 1:n
    6. for j = 1:n
    7. if i ~= j
    8. D(i,j) = sqrt(sum((citys(i,:) - citys(j,:)).^2));
    9. else
    10. D(i,j) = 1e-4;
    11. end
    12. end
    13. end
    14. % 初始化参数
    15. m = 80; % 蚂蚁数量
    16. alpha = 1; % 信息素重要程度因子
    17. beta = 5; % 启发函数重要程度因子
    18. rho = 0.1; % 信息素挥发因子
    19. Q = 1; % 常系数
    20. Eta = 1./D; % 启发函数
    21. Tau = ones(n,n); % 信息素矩阵
    22. Table = zeros(m,n); % 路径记录表
    23. iter = 1; % 迭代次数初值
    24. iter_max = 200; % 最大迭代次数
    25. Route_best = zeros(iter_max,n); % 各代最佳路径
    26. Length_best = zeros(iter_max,1); % 各代最佳路径的长度
    27. Length_ave = zeros(iter_max,1); % 各代路径的平均长度
    28. % 迭代寻找最佳路径
    29. while iter <= iter_max
    30. % 随机产生各个蚂蚁的起点城市
    31. start = zeros(m,1);
    32. for i = 1:m
    33. temp = randperm(n);
    34. start(i) = temp(1);
    35. end
    36. Table(:,1) = start;
    37. % 构建解空间
    38. citys_index = 1:n;
    39. % 逐个蚂蚁路径选择
    40. for i = 1:m
    41. % 逐个城市路径选择
    42. for j = 2:n
    43. tabu = Table(i,1:(j - 1)); % 已访问的城市集合(禁忌表)
    44. allow_index = ~ismember(citys_index,tabu);
    45. allow = citys_index(allow_index); % 待访问的城市集合
    46. P = allow;
    47. % 计算城市间转移概率
    48. for k = 1:length(allow)
    49. P(k) = Tau(tabu(end),allow(k))^alpha * Eta(tabu(end),allow(k))^beta;
    50. end
    51. P = P/sum(P);
    52. % 轮盘赌法选择下一个访问城市
    53. Pc = cumsum(P);
    54. target_index = find(Pc >= rand);
    55. target = allow(target_index(1));
    56. Table(i,j) = target;
    57. end
    58. end
    59. % 计算各个蚂蚁的路径距离
    60. Length = zeros(m,1);
    61. for i = 1:m
    62. Route = Table(i,:);
    63. for j = 1:(n - 1)
    64. Length(i) = Length(i) + D(Route(j),Route(j + 1));
    65. end
    66. Length(i) = Length(i) + D(Route(n),Route(1));
    67. end
    68. % 计算最短路径距离及平均距离
    69. if iter == 1
    70. [min_Length,min_index] = min(Length);
    71. Length_best(iter) = min_Length;
    72. Length_ave(iter) = mean(Length);
    73. Route_best(iter,:) = Table(min_index,:);
    74. else
    75. [min_Length,min_index] = min(Length);
    76. Length_best(iter) = min(Length_best(iter - 1),min_Length);
    77. Length_ave(iter) = mean(Length);
    78. if Length_best(iter) == min_Length
    79. Route_best(iter,:) = Table(min_index,:);
    80. else
    81. Route_best(iter,:) = Route_best((iter-1),:);
    82. end
    83. end
    84. % 更新信息素
    85. Delta_Tau = zeros(n,n);
    86. % 逐个蚂蚁计算
    87. for i = 1:m
    88. % 逐个城市计算
    89. for j = 1:(n - 1)
    90. Delta_Tau(Table(i,j),Table(i,j+1)) = Delta_Tau(Table(i,j),Table(i,j+1)) + Q/Length(i);
    91. end
    92. Delta_Tau(Table(i,n),Table(i,1)) = Delta_Tau(Table(i,n),Table(i,1)) + Q/Length(i);
    93. end
    94. Tau = (1-rho) * Tau + Delta_Tau;
    95. % 迭代次数加1,清空路径记录表
    96. iter = iter + 1;
    97. Table = zeros(m,n);
    98. end
    99. % 结果显示
    100. [Shortest_Length,index] = min(Length_best);
    101. Shortest_Route = Route_best(index,:);
    102. disp(['最短距离:' num2str(Shortest_Length)]);
    103. disp(['最短路径:' num2str([Shortest_Route Shortest_Route(1)])]);
    104. % 绘图
    105. figure(1)
    106. plot([citys(Shortest_Route,1);citys(Shortest_Route(1),1)],...
    107. [citys(Shortest_Route,2);citys(Shortest_Route(1),2)],'o-');
    108. grid on
    109. for i = 1:size(citys,1)
    110. text(citys(i,1),citys(i,2),[' ' num2str(i)]);
    111. end
    112. text(citys(Shortest_Route(1),1),citys(Shortest_Route(1),2),' 起点');
    113. text(citys(Shortest_Route(end),1),citys(Shortest_Route(end),2),' 终点');
    114. xlabel('城市位置横坐标')
    115. ylabel('城市位置纵坐标')
    116. title(['蚁群算法优化路径(最短距离:' num2str(Shortest_Length) ')'])
    117. figure(2)
    118. plot(1:iter_max,Length_best,'b',1:iter_max,Length_ave,'r:')
    119. legend('最短距离','平均距离')
    120. xlabel('迭代次数')
    121. ylabel('距离')
    122. title('各代最短距离与平均距离对比')

    结果:

    一般来说,使用两种方法对比一下,然后选结果好的作为最终结果就挺不错的了,因为优化类问题没有这么简单,能做出来就很棒了。

    联合使用蚁群算法和模拟退火

    1. 使用蚁群算法找到一个初始解
    2. 将该解作为模拟退火算法的初始解
    3. 使用模拟退火算法进行优化
    4. 输出最终结果

    简单来说,就是使用蚁群算法先求出一个最短路径作为初始解,然后把它作为模拟退火的最优解,使用退火进行进一步的优化。

    但是作者发现效果并不好,其迭代曲线啊,还是和之前一样从高高的位置迭代,结果也不好,肯定是模拟退火的原因,于是作者有了以下想法:当已经有了一个不错的初始解(通过蚁群算法获得)时,模拟退火算法的参数需要进行相应的调整以避免在初始阶段进行过大的“跳跃”。

    可以减小初始温度、减小冷却速度(都能使得搜索更充分)、修改接受准则以更倾向于接受与当前解相近的解和设置交换城市函数的交换“步长”。

    修改接受准则,加入一些额外条件或参数以减小接受差解的概率。例如,可以使用一个基于当前温度和解的差异的函数来调整接受概率。

    1. if (diff < 0) || (rand < exp(-diff / (temperature * some_factor)))
    2. route = new_route;
    3. current_dist = new_dist;
    4. end

    其中 some_factor 是一个你可以调整的参数,用来控制接受新解的概率。

    在交换城市时,可以只考虑交换相邻城市的位置,这会限制每次迭代的“步长”。

    1. function new_route = swapCities2(route)
    2. n = length(route);
    3. idx = randi(n-1);
    4. new_route = route;
    5. new_route([idx idx+1]) = route([idx+1 idx]);
    6. end

    经过作者尝试,这种设置还是蛮动态的,不一定都需要改,改多了就很难得到更小的解,作者就没用新的交换函数(可能是因为数据太少)。得到结果如下:

    最终结合代码如下:

    1. %% 二者结合
    2. % 蚁群算法求解TSP问题
    3. % 计算城市间相互距离
    4. n = size(citys,1);
    5. D = zeros(n,n);
    6. for i = 1:n
    7. for j = 1:n
    8. if i ~= j
    9. D(i,j) = sqrt(sum((citys(i,:) - citys(j,:)).^2));
    10. else
    11. D(i,j) = 1e-4;
    12. end
    13. end
    14. end
    15. % 初始化参数
    16. m = 80; % 蚂蚁数量
    17. alpha = 1; % 信息素重要程度因子
    18. beta = 5; % 启发函数重要程度因子
    19. rho = 0.1; % 信息素挥发因子
    20. Q = 1; % 常系数
    21. Eta = 1./D; % 启发函数
    22. Tau = ones(n,n); % 信息素矩阵
    23. Table = zeros(m,n); % 路径记录表
    24. iter = 1; % 迭代次数初值
    25. iter_max = 200; % 最大迭代次数
    26. Route_best = zeros(iter_max,n); % 各代最佳路径
    27. Length_best = zeros(iter_max,1); % 各代最佳路径的长度
    28. Length_ave = zeros(iter_max,1); % 各代路径的平均长度
    29. % 迭代寻找最佳路径
    30. while iter <= iter_max
    31. % 随机产生各个蚂蚁的起点城市
    32. start = zeros(m,1);
    33. for i = 1:m
    34. temp = randperm(n);
    35. start(i) = temp(1);
    36. end
    37. Table(:,1) = start;
    38. % 构建解空间
    39. citys_index = 1:n;
    40. % 逐个蚂蚁路径选择
    41. for i = 1:m
    42. % 逐个城市路径选择
    43. for j = 2:n
    44. tabu = Table(i,1:(j - 1)); % 已访问的城市集合(禁忌表)
    45. allow_index = ~ismember(citys_index,tabu);
    46. allow = citys_index(allow_index); % 待访问的城市集合
    47. P = allow;
    48. % 计算城市间转移概率
    49. for k = 1:length(allow)
    50. P(k) = Tau(tabu(end),allow(k))^alpha * Eta(tabu(end),allow(k))^beta;
    51. end
    52. P = P/sum(P);
    53. % 轮盘赌法选择下一个访问城市
    54. Pc = cumsum(P);
    55. target_index = find(Pc >= rand);
    56. target = allow(target_index(1));
    57. Table(i,j) = target;
    58. end
    59. end
    60. % 计算各个蚂蚁的路径距离
    61. Length = zeros(m,1);
    62. for i = 1:m
    63. Route = Table(i,:);
    64. for j = 1:(n - 1)
    65. Length(i) = Length(i) + D(Route(j),Route(j + 1));
    66. end
    67. Length(i) = Length(i) + D(Route(n),Route(1));
    68. end
    69. % 计算最短路径距离及平均距离
    70. if iter == 1
    71. [min_Length,min_index] = min(Length);
    72. Length_best(iter) = min_Length;
    73. Length_ave(iter) = mean(Length);
    74. Route_best(iter,:) = Table(min_index,:);
    75. else
    76. [min_Length,min_index] = min(Length);
    77. Length_best(iter) = min(Length_best(iter - 1),min_Length);
    78. Length_ave(iter) = mean(Length);
    79. if Length_best(iter) == min_Length
    80. Route_best(iter,:) = Table(min_index,:);
    81. else
    82. Route_best(iter,:) = Route_best((iter-1),:);
    83. end
    84. end
    85. % 更新信息素
    86. Delta_Tau = zeros(n,n);
    87. % 逐个蚂蚁计算
    88. for i = 1:m
    89. % 逐个城市计算
    90. for j = 1:(n - 1)
    91. Delta_Tau(Table(i,j),Table(i,j+1)) = Delta_Tau(Table(i,j),Table(i,j+1)) + Q/Length(i);
    92. end
    93. Delta_Tau(Table(i,n),Table(i,1)) = Delta_Tau(Table(i,n),Table(i,1)) + Q/Length(i);
    94. end
    95. Tau = (1-rho) * Tau + Delta_Tau;
    96. % 迭代次数加1,清空路径记录表
    97. iter = iter + 1;
    98. Table = zeros(m,n);
    99. end
    100. % 结果显示
    101. [Shortest_Length,index] = min(Length_best);
    102. Shortest_Route = Route_best(index,:);
    103. disp(['初始最短距离:' num2str(Shortest_Length)]);
    104. disp(['初始最短路径:' num2str([Shortest_Route Shortest_Route(1)])]);
    105. % 初始化参数
    106. temperature = 200;
    107. final_temperature = 1;
    108. cooling_rate = 0.9;
    109. time_temperature = 1;
    110. time_tuihuo = 100;
    111. % 初始路径就是蚁群算法得到的路径
    112. route = Shortest_Route;
    113. current_dist = Shortest_Length;
    114. % 存储每次迭代的距离
    115. distances = [];
    116. %控制接受新解的概率
    117. some_factor=0.3;
    118. while temperature > final_temperature
    119. for i = 1:time_tuihuo
    120. % 交换两个城市的位置来产生新的路径
    121. new_route = swapCities(route);
    122. new_dist = total_distance(new_route, citys);
    123. diff = new_dist - current_dist;
    124. % 使用 Metropolis 准则来决定是否接受新路径
    125. if (diff < 0) || (rand < exp(-diff / (temperature*some_factor)))
    126. route = new_route;
    127. current_dist = new_dist;
    128. time_temperature = time_temperature + 1;
    129. end
    130. end
    131. % 存储当前的总距离
    132. distances = [distances, current_dist];
    133. % 降温
    134. temperature = temperature * cooling_rate;
    135. end
    136. % 输出最终结果
    137. disp('最终最短路径:');
    138. disp(route);
    139. fprintf('最终最短距离:%.4f\n', current_dist);
    140. % 绘制最终路径
    141. figure;
    142. plot(citys(:,1), citys(:,2), 'o'); % 绘制城市
    143. hold on;
    144. % 绘制路径
    145. for i = 1:(length(route)-1)
    146. plot([citys(route(i), 1), citys(route(i+1), 1)], ...
    147. [citys(route(i), 2), citys(route(i+1), 2)], 'k-');
    148. end
    149. % 绘制从最后一个城市到第一个城市的路径
    150. plot([citys(route(end), 1), citys(route(1), 1)], ...
    151. [citys(route(end), 2), citys(route(1), 2)], 'k-');
    152. hold off;
    153. title('最终路径');
    154. % 绘制迭代曲线图
    155. figure;
    156. plot(distances);
    157. title('迭代过程中的总距离变化');
    158. xlabel('迭代次数');
    159. ylabel('总距离');

    可能的方法还有:使用模拟退火算法来优化蚁群算法的一些参数,或者在每一次迭代后使用模拟退火算法来进行局部搜索。都是作者推荐的方法哦!

  • 相关阅读:
    Modbus TCP通信笔记
    Atlassian发布最新补贴政策,Jira/Confluence迁移上云最低可至零成本
    接口测试之文件上传
    美团三面:一直追问我, MySQL 幻读被彻底解决了吗?
    python异步日志库loguru
    给rust的cargo环境或gnome构建器安装rust-analyzer
    shell学习笔记
    利用torch.nn实现logistic回归在人工构造的数据集上进行训练和测试
    windows下安装cnpm
    Python OpenCV通过灰度平均值进行二值化处理以减少像素误差
  • 原文地址:https://blog.csdn.net/qq_65052774/article/details/133466838