2013-04-14 22:24:19 +08:00
|
|
|
function plotAndComparison( rVolt,rVAngel,SEVolt,SEVAngel )
|
|
|
|
|
x=1:length(rVolt);
|
|
|
|
|
subplot(2,1,1);
|
|
|
|
|
plot(x,rVolt,'r-');
|
|
|
|
|
hold on
|
|
|
|
|
plot(x,SEVolt);
|
2013-08-30 16:11:16 +08:00
|
|
|
legend('real','se');
|
2013-04-14 22:24:19 +08:00
|
|
|
subplot(2,1,2);
|
|
|
|
|
plot(x,rVAngel,'r-');
|
|
|
|
|
hold on
|
|
|
|
|
plot(x,SEVAngel);
|
2013-08-30 16:11:16 +08:00
|
|
|
legend('real','se');
|
2013-04-14 22:24:19 +08:00
|
|
|
end
|
|
|
|
|
|