%C.zhou2012.5.21
clc;
clear;
lemdatest=[0.1 0.2 0.3 0.4 0.5 0.6 0.7 0.8 0.9 1];
vtest=[1 1.2 1.1 1.3 1.1 0.9 0.8 0.99 0.85 0.91;2.1 2.2 2.3 2.4 2.5
2.6 2.7 2.8 2.9 2.41;1.31 1.32 1.35 1.56 1.57 1.58 1.69 1.30 1.31
1.26;1.1 1.2 1.3 1.54 1.55 1.66 1.77 1.88 1.99 2.0];
plotid1=1;
plotid2=2;
plotid3=3;
plotid4=4;
plot(lemdatest,vtest(plotid1,:),'k');
h1=plot(lemdatest,vtest(plotid1,:),'k');%句柄
hold on;
plot(lemdatest,vtest(plotid2,:),'k');
h2=plot(lemdatest,vtest(plotid2,:),'k');
hold on;
plot(lemdatest,vtest(plotid3,:),'k');
h3=plot(lemdatest,vtest(plotid3,:),'k');
hold on;
plot(lemdatest,vtest(plotid4,:),'k');
h4=plot(lemdatest,vtest(plotid4,:),'k');
hhu=[h1,h2,h3,h4];
addmarkers(hhu,3);
hhulegend=addmarkers(hhu,3);
hold on;
legend(hhulegend,'节点7','节点31','节点12', '节点19');