1.加了一个画错误数据的图

2.开始一点点做测试

Signed-off-by: dugg@lab-desk <dugg@lab-desk>
This commit is contained in:
dugg@lab-desk
2015-02-03 21:52:51 +08:00
parent beaa6855d4
commit a091d9f502
3 changed files with 67 additions and 47 deletions

16
graph/badDataGraph.m Normal file
View File

@@ -0,0 +1,16 @@
x=1:33;
y=1:33;
x=[x,15,33];
y=[y,17,23];
scatter(x,y);
xlabel('');
ylabel('');
hold on;
for I=1:33
% plot([1,1,1,1]-1+I,[[1:3]-2+I,I]);
plot([I,I],[0,I]);
end
% plot([1,1,1,1]-1+15,[1:3]-2+17);
% plot([1,1,1,1]-1+33,[1,2,12]-2+23);
plot([15,15],[0,17]);
plot([33,33],[0,23]);