Plot shows in legend but not in graph?
subplot(2,2,1);
plot(x1,y1,’bs’)
hold on
p1 = polyfit(x1,y1,35);
f1 = polyval(p1,x1);
plot(x1,f1,’–r’)
hold off
legend
title(‘Data Set 1’)
xlabel(‘X1 Values’)
ylabel(‘Y1 Values’)
subplot(2,2,2);
plot(x2,y2,’g*’)
hold on
p2 = polyfit(x2,y2,35);
f2 = polyval(p2,x2);
plot(x2,f2,’–b’)
hold off
legend
title(‘Data Set 2’)
xlabel(‘X2 Values’)
ylabel(‘Y2 Values’)subplot(2,2,1);
plot(x1,y1,’bs’)
hold on
p1 = polyfit(x1,y1,35);
f1 = polyval(p1,x1);
plot(x1,f1,’–r’)
hold off
legend
title(‘Data Set 1’)
xlabel(‘X1 Values’)
ylabel(‘Y1 Values’)
subplot(2,2,2);
plot(x2,y2,’g*’)
hold on
p2 = polyfit(x2,y2,35);
f2 = polyval(p2,x2);
plot(x2,f2,’–b’)
hold off
legend
title(‘Data Set 2’)
xlabel(‘X2 Values’)
ylabel(‘Y2 Values’) subplot(2,2,1);
plot(x1,y1,’bs’)
hold on
p1 = polyfit(x1,y1,35);
f1 = polyval(p1,x1);
plot(x1,f1,’–r’)
hold off
legend
title(‘Data Set 1’)
xlabel(‘X1 Values’)
ylabel(‘Y1 Values’)
subplot(2,2,2);
plot(x2,y2,’g*’)
hold on
p2 = polyfit(x2,y2,35);
f2 = polyval(p2,x2);
plot(x2,f2,’–b’)
hold off
legend
title(‘Data Set 2’)
xlabel(‘X2 Values’)
ylabel(‘Y2 Values’) subplot, multiple MATLAB Answers — New Questions