ot-lab-lpp

Version 1.0.0 (1.45 KB) by Akshay
code
1 Download
Updated 19 Feb 2023

View License

clc;
close all;
a=[1,2;1,1;0,1;1,0;0,1];
b=[200;1500;600;0;0];
c=[2,3];
x1=0:0.1:max(b);
x21=(b(1)-a(1,1)*x1)/a(1,2);
x22=(b(2)-a(2,1)*x1)/a(2,2);
x23=(b(3)-a(3,1)*x1)/a(3,2);
x21=max(0,x21);
x22=max(0,x22);
x23=max(0,x23);
plot(x1,x21,'r',x1,x22,'g',x1,x23,'k');
legend('x1,x21','x1,x22','x1,x23');
sol=[];
for i=1:length(a)
a1=a(i,:);
b1=b(i);
for j=i+1:length(a)
a2=a(j,:);
b2=b(j);
a3=[a1;a2];
b3=[b1;b2];
x3=a3\b3;
sol=[sol,x3];
end
end
sol
% to find points which are not in feasible region and remove them
x1=sol(1,:);
x2=sol(2,:);
y1=find(1*x1+2*x2>200);
sol(:,y1)=[];
x1=sol(1,:);
x2=sol(2,:);
y2=find(1*x1+1*x2>1500);
sol(:,y2)=[];
x1=sol(1,:);
x2=sol(2,:);
y3=find(x1<0);
sol(:,y3)=[];
x1=sol(1,:);
x2=sol(2,:);
y4=find(x2<0);
sol(:,y4)=[];
x1=sol(1,:);
x2=sol(2,:);
y5=find(x2>600);
sol(:,y5)=[];
x1=sol(1,:);
x2=sol(2,:);
x1
x2
sol=sol';
for i=1:length(sol)
obj(i,:)=sum(sol(i,:).*c);
end
[p,loc]=max(obj);
fprintf('the optimal value is %f\n',p);% value is ans
fprintf('the optimal solution is'); %solution is points
disp(sol(loc,:));

Cite As

Akshay (2024). ot-lab-lpp (https://www.mathworks.com/matlabcentral/fileexchange/124940-ot-lab-lpp), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2022b
Compatible with any release
Platform Compatibility
Windows macOS Linux
Tags Add Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Published Release Notes
1.0.0