0

我有以下代码:

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;

我不确定我是否理解以下内容,有人可以帮忙吗?!

我的代码的输出

the data of round deviation mean are zeros

here are data from 65 to 100 of round sumlive

23.000 17.000 31.000 31.000 23.000 31.000 31.000 23.000 21.000 21.000 23.000 31.000 31.000 31.000 31.000 31.000 16.000 16.00015.000
13.000 12.0001010000
37.000 37.000

4

1 回答 1

0

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

于 2012-06-29T06:57:33.397 回答