You are on page 1of 1

A1=500;

B1=5.3;
G1=0.004;
A2=400;
B2=5.5;
G2=0.006;
A3=200;
B3=5.8;
G3=0.009;
PD=800;
LANDA=8.5;
L=LANDA;
Q=0:0.1:PD;
P=L*ones(1,length(Q));
plot(Q,P);
P1=0:0.1:PD;
P2=0:0.1:PD;
P3=0:0.1:PD;
c1=B1+2*G1*P1;
c2=B2+2*G2*P2;
c3=B3+2*G3*P3;
hold on, grid on;
plot(P1,c1);
plot(P2,c2);
plot(P3,c3);

You might also like