Here achieved several function curves gathered together, as long as the data input into the program, you can directly out of the overlay of the image. This is the last class, and there are other steps you can follow online.

x=0:2:10;
xlim([0.10]); % limit x coordinate value range ylim([0.120]); % limits the range of y-coordinate valuesset(gca,'xtick'.0:6:10); %gca is the handle to the current axis, and xtick indicates where I want to set the X-axis scale to displayset(gca,'xticklabel', {0.2.4.6.8.10}); % xtickLabel represents what is displayed on the setting scale, followed by the actual value % that you want to displayset(gca,'xtick'[0 2 4 6 8 10]);
%set(gca,'xticklabel', {'0'.'2'.'4'.'6'.'8'.'10'});
y=[0 10 20 30 40 50 60 70 80 90 100 110 120];
set(gca,'yTick'[0 10 20 30 40 50 60 70 80 90 100 110 120]);
y1=[12 49 59 67 68 71];
y2=[14 55 68 71 74 77];
y3=[17 85 79 81 80 80];
plot(x,[y1;y2;y3]);
legend(DPPH free radical scavenging rate of aqueous solution (%).DPPH free radical scavenging rate of bionic Extract (%).'Vitamin C clearance (%)');
title('DPPH clearance (%)'.'color'.'b');
xlabel('Mass concentration (mg/ml)');
ylabel(DPPH free radical scavenging rate (%));
axis([0.10.0 120])
set(gca,'xtick'[0 2 4 6 8 10]);
Copy the code

Run a screenshot