提交电机论文的版本

Signed-off-by: dmy <dugg@21cn.com>
This commit is contained in:
dmy
2014-04-14 15:12:07 +08:00
parent c3f05ce4cc
commit 7e91bafa7f
211 changed files with 2703 additions and 88 deletions

View File

@@ -0,0 +1,14 @@
clc
clear
percent=[0 10 20 30 40 50 60 70 80 90 100];
statDeviation=[0.003651 0.058995 0.0432499 0.048360 0.041104 0.036334 0.028265 0.013192 0.017754 0.001934 0.00077827];
maxDeviation=[0.11334 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.122604 0.12984];
subplot(2,1,1);
plot(percent,statDeviation);
ylabel('统计误差(JS)');
xlabel('负荷实时数据可知情况/%');
subplot(2,1,2);
plot(percent,maxDeviation);
ylabel('最大偏差(JM)/%');
xlabel('负荷实时数据可知情况/%');
axis([0,100,0,0.22]);

View File

@@ -0,0 +1,15 @@
clc
clear
percent=[0 10 20 30 40 50 60 70 80 90 100];
statDeviation=[0.003651 0.058995 0.0432499 0.048360 0.041104 0.036334 0.028265 0.013192 0.017754 0.001934 0.00077827];
maxDeviation=[0.11334 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.2 0.045225 0.02934];
subplot(2,1,1);
plot(percent,statDeviation,'k');
ylabel('(JS)');
xlabel('/%');
axis([0,100,0,0.065]);
subplot(2,1,2);
plot(percent,maxDeviation,'k');
ylabel('(JM)/%');
xlabel('/%');
axis([0,100,0,0.22]);