首页 > 代码库 > matlab绘图--线性规划图解法示意
matlab绘图--线性规划图解法示意
matlab绘图--线性规划图解法示意
图解法
matlab绘图
区域填充
线性规划问题:
matlab绘图
- L1=[4,0;4,4];
- plot(L1(:,1),L1(:,2));hold on
- text(4.1,3.5,‘x_1=4‘,‘color‘,‘b‘);
- L2=[0 3;5 3];
- plot(L2(:,1),L2(:,2));hold on
- text(0.8,3.1,‘x_2=3‘,‘color‘,‘b‘);
- L3=[0 2.4;5 0.4];
- plot(L3(:,1),L3(:,2));hold on
- text(1,1.5,‘2x_1+5x_2=12‘,‘color‘,‘b‘)
- L4=[0,4;4,2];
- plot(L4(:,1),L4(:,2));
- text(3,2.5,‘x_1+2x_2=8‘,‘color‘,‘b‘)
- x=[0 0 2 4 4]‘;
- y=[2.4 3,3,2,0.8]‘;
- fill(x,y,‘r‘);
- xlabel(‘x_1‘)
- ylabel(‘x_2‘)
- axis([0 5.3 -0.2 4])
- z0=[0,2.4;4.8,0];
- plot(z0(:,1),z0(:,2),‘k--‘,‘LineWidth‘,2);
- text(4.5,0.3,‘z=4.8‘)
- z1=[0,2.8;4.6,0.5];
- plot(z1(:,1),z1(:,2),‘k--‘,‘Linewidth‘,2);
- text(4.6,0.5,‘z=5.6‘)
- z2=[0,3;4.6,0.7];
- plot(z2(:,1),z2(:,2),‘k--‘,‘Linewidth‘,2);
- text(4.6,0.7,‘z=6‘)
- z3=[0.6,3.7;4.6,1.7];
- plot(z3(:,1),z3(:,2),‘g--‘,‘Linewidth‘,2);
- text(4.6,1.7,‘z=8‘)
- text(4,2,‘A_2‘,‘color‘,‘r‘,‘fontsize‘,20);
- text(2,3,‘A_1‘,‘color‘,‘r‘,‘fontsize‘,20);
结果图
matlab绘图--线性规划图解法示意
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。