为什么图形有粗细线?

时间:2012-05-10 16:59:59

标签: matlab graph

我有以下代码:

RdmMatrix = vertcat(Round_deviation_mean {:});
rslMatrix = vertcat(roundsumlive {:});
correctsMatrix=vertcat(corrects{:});
A = [ RdmMatrix(:,1), rslMatrix(:,1) ];

figure(88);
bar([RdmMatrix(:,1) rslMatrix(:,1)], 0.05, 'stack');
legend('Correct', 'Functioning');
xlabel('Run');
ylabel('Sensor Count');
hold on;

我不确定我是否理解以下任何人都可以提供帮助?!

output of my code

the data of round deviation mean are zeros

here are data from 65 to 100 of round sumlive

23.000 19.000 17.000 16.000 38.000 35.000 31.000 25.000 23.000 19.000 16.000 14.000
13.000 11.000 36.000 33.000 31.000 28.000 25.000 21.000 20.000 20.000 14.000 12.000
38.000 35.000 31.000 26.000 23.000 16.000 15.000 13.000 12.000 10.000 37.000

1 个答案:

答案 0 :(得分:0)

最好的选择是通过取平均值来减少跑步次数。