matlab - 修正单纯形法 - Matlab 脚本

标签 matlab math optimization linear-programming simplex

我被要求编写一个 Matlab 程序,以便使用修正的单纯形法 求解 LP。

我编写的代码运行时输入数据没有问题,尽管我意识到它没有正确解决问题,因为它没有更新基 B 的逆(上述方法的真正核心思想)。

问题只与一部分代码有关,脚本底部的代码针对:

通过对 [B^-1 u] 执行基本行运算来计算新的逆基 B^-1(主元行索引为 l_out)。向量 u 被转换为一个单位向量,其中 u(l_out) = 1,对于其他 i,u(i) = 0。

这是我写的代码:

    %% Implementation of the revised Simplex. Solves a linear
    % programming problem of the form
    %
    %   min c'*x
    %   s.t. Ax  = b
    %         x >= 0   
    %
    % The function input parameters are the following:
    %     A: The constraint matrix 
    %     b: The rhs vector 
    %     c: The vector of cost coefficients 
    %     C: The indices of the basic variables corresponding to an
    %        initial basic feasible solution
    % 
    % The function returns:
    %     x_opt: Decision variable values at the optimal solution  
    %     f_opt: Objective function value at the optimal solution
    %
    % Usage: [x_opt, f_opt] = S12345X(A,b,c,C)
    %  NOTE: Replace 12345X with your own student number 
    %        and rename the file accordingly

    function [x_opt, f_opt] = SXXXXX(A,b,c,C)
    %% Initialization phase 
    % Initialize the vector of decision variables
    x = zeros(length(c),1);

    % Create the initial Basis matrix, compute its inverse and    
    % compute the inital basic feasible solution
    B=A(:,C);
    invB = inv(B);
    x(C) = invB*b;


    %% Iteration phase
    n_max = 10;        % At most n_max iterations
    for n = 1:n_max    % Main loop

        % Compute the vector of reduced costs c_r 

        c_B = c(C);         % Basic variable costs
        p = (c_B'*invB)';   % Dual variables
        c_r = c' - p'*A;    % Vector of reduced costs

        % Check if the solution is optimal. If optimal, use 
        % 'return' to break from the function, e.g.

        J = find(c_r < 0); % Find indices with negative reduced costs

        if (isempty(J))
            f_opt = c'*x;
            x_opt = x;
            return;
        end

        % Choose the entering variable
        j_in = J(1);

        % Compute the vector u (i.e., the reverse of the basic directions) 

        u = invB*A(:,j_in);
        I = find(u > 0);

        if (isempty(I))
           f_opt = -inf;  % Optimal objective function cost = -inf
           x_opt = [];        % Produce empty vector []
           return         % Break from the function
        end

        % Compute the optimal step length theta

        theta = min(x(C(I))./u(I));

        L = find(x(C)./u == theta); % Find all indices with ratio theta

        % Select the exiting variable

        l_out = L(1);

        % Move to the adjacent solution 

        x(C) = x(C) - theta*u;
        % Value of the entering variable is theta
        x(j_in) = theta;


        % Update the set of basic indices C 

        C(l_out) = j_in;

        % Compute the new inverse basis B^-1 by performing elementary row 
        % operations on [B^-1 u] (pivot row index is l_out). The vector u is trans-
        % formed into a unit vector with u(l_out) = 1 and u(i) = 0 for
        % other i.

        M=horzcat(invB,u);

        [f g]=size(M);
        R(l_out,:)=M(l_out,:)/M(l_out,j_in); % Copy row l_out, normalizing M(l_out,j_in) to 1
        u(l_out)=1;
        for k = 1:f % For all matrix rows
           if (k ~= l_out) % Other then l_out
           u(k)=0;
           R(k,:)=M(k,:)-M(k,j_in)*R(l_out,:); % Set them equal to the original matrix Minus a multiple of normalized row l_out, making R(k,j_in)=0
           end
        end

        invM=horzcat(u,invB);

        % Check if too many iterations are performed (increase n_max to 
        % allow more iterations)
        if(n == n_max)
            fprintf('Max number of iterations performed!\n\n');
            return
        end
    end  % End for (the main iteration loop)
end  % End function

%% Example 3.5 from the book (A small test problem)
% Data in standard form:
% A = [1 2 2 1 0 0;
%     2 1 2 0 1 0;
%     2 2 1 0 0 1];
% b = [20 20 20]';
% c = [-10 -12 -12 0 0 0]';
% C = [4 5 6];           % Indices of the basic variables of 
%                        % the initial basic feasible solution
% 
% The optimal solution
% x_opt = [4 4 4 0 0 0]' % Optimal decision variable values
% f_opt = -136           % Optimal objective function cost

最佳答案

好的,在大量使用 printmat 和 disp 以从数学角度理解代码内部发生的事情后,我意识到索引 j_in 和除以的归一化存在问题零因此我设法解决了如下问题。 现在它运行完美。干杯。

%% Implementation of the revised Simplex. Solves a linear
% programming problem of the form
%
%   min c'*x
%   s.t. Ax  = b
%         x >= 0
%
% The function input parameters are the following:
%     A: The constraint matrix 
%     b: The rhs vector 
%     c: The vector of cost coefficients 
%     C: The indices of the basic variables corresponding to an
%        initial basic feasible solution
% 
% The function returns:
%     x_opt: Decision variable values at the optimal solution  
%     f_opt: Objective function value at the optimal solution
%
% Usage: [x_opt, f_opt] = S12345X(A,b,c,C)
%  NOTE: Replace 12345X with your own student number 
%        and rename the file accordingly

function [x_opt, f_opt] = S472366(A,b,c,C)
    %% Initialization phase 
    % Initialize the vector of decision variables
    x = zeros(length(c),1);

    % Create the initial Basis matrix, compute its inverse and    
    % compute the inital basic feasible solution
    B=A(:,C);
    invB = inv(B);
    x(C) = invB*b;


    %% Iteration phase
    n_max = 10;        % At most n_max iterations
    for n = 1:n_max    % Main loop

        % Compute the vector of reduced costs c_r 

        c_B = c(C);         % Basic variable costs
        p = (c_B'*invB)';   % Dual variables
        c_r = c' - p'*A;    % Vector of reduced costs

        % Check if the solution is optimal. If optimal, use 
        % 'return' to break from the function, e.g.

        J = find(c_r < 0); % Find indices with negative reduced costs

        if (isempty(J))
            f_opt = c'*x;
            x_opt = x;
            return;
        end

        % Choose the entering variable
        j_in = J(1);

        % Compute the vector u (i.e., the reverse of the basic directions) 

        u = invB*A(:,j_in);
        I = find(u > 0);

        if (isempty(I))
           f_opt = -inf;  % Optimal objective function cost = -inf
           x_opt = [];        % Produce empty vector []
           return         % Break from the function
        end

        % Compute the optimal step length theta

        theta = min(x(C(I))./u(I));

        L = find(x(C)./u == theta); % Find all indices with ratio theta

        % Select the exiting variable

        l_out = L(1);

        % Move to the adjacent solution 

        x(C) = x(C) - theta*u;
        % Value of the entering variable is theta
        x(j_in) = theta;


        % Update the set of basic indices C 

        C(l_out) = j_in;

        % Compute the new inverse basis B^-1 by performing elementary row 
        % operations on [B^-1 u] (pivot row index is l_out). The vector u is trans-
        % formed into a unit vector with u(l_out) = 1 and u(i) = 0 for
        % other i.

        M=horzcat(u, invB);
        [f g]=size(M);
        if (theta~=0)
        M(l_out,:)=M(l_out,:)/M(l_out,1); % Copy row l_out, normalizing M(l_out,1) to 1
        end
        for k = 1:f % For all matrix rows
           if (k ~= l_out) % Other then l_out
           M(k,:)=M(k,:)-M(k,1)*M(l_out,:); % Set them equal to the original matrix Minus a multiple of normalized row l_out, making R(k,j_in)=0
        end
        end
        invB=M(1:3,2:end);


        % Check if too many iterations are performed (increase n_max to 
        % allow more iterations)
        if(n == n_max)
            fprintf('Max number of iterations performed!\n\n');
            return
        end
    end  % End for (the main iteration loop)
end  % End function

%% Example 3.5 from the book (A small test problem)
% Data in standard form:
% A = [1 2 2 1 0 0;
%     2 1 2 0 1 0;
%     2 2 1 0 0 1];
% b = [20 20 20]';
% c = [-10 -12 -12 0 0 0]';
% C = [4 5 6];           % Indices of the basic variables of 
%                        % the initial basic feasible solution
% 
% The optimal solution
% x_opt = [4 4 4 0 0 0]' % Optimal decision variable values
% f_opt = -136           % Optimal objective function cost

关于matlab - 修正单纯形法 - Matlab 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26468612/

相关文章:

python - 如果我们在 python 的 for 循环中使用范围内的一些数学运算怎么办

performance - 帮助提高网站性能,尤其是在 IE8 中

c++ - 返回 std::pair 与通过非常量引用传递

matlab - 在matlab中只获取第二个返回值?

matlab - 了解 fminunc 参数和匿名函数、函数处理程序

css - 如何在 Less 中计算正弦、余弦?

algorithm - 我怎样才能更有效地实现这个

performance - 从矩阵中减去每个向量元素的有效方法

matlab - 如何使用逻辑索引MATLAB获取3d矩阵中每个切片中某些区域的平均值

javascript - 3d 三 Angular 方程