加入了画电压分布的代码

Signed-off-by: facat <dugg@21cn.com>
This commit is contained in:
facat
2013-03-27 15:55:34 +08:00
parent 942120eb70
commit 0f95f9c04b
10 changed files with 79 additions and 7 deletions

45
plotVolt.m Normal file
View File

@@ -0,0 +1,45 @@
%%
load('case1V.mat');
CV1=Volt;
load('case2V.mat');
CV2=Volt;
load('case3V.mat');
CV3=Volt;
load('caseR.mat');
CVR=Volt;
load('caseM.mat');
CVM=Volt;
subplot(3,2,1)
hist(CVR)
title('')
subplot(3,2,2)
hist(CVM)
title('')
subplot(3,2,3)
hist(CV1)
title('Case 1')
subplot(3,2,4)
hist(CV2)
title('Case 2')
subplot(3,2,5)
hist(CV3)
title('Case 3')
% figure()
% hold on
%
% plot(CVR)
% title('')
%
% plot(CVM)
% title('')
%
% plot(CV1)
% title('Case 1')
%
% plot(CV2)
% title('Case 2')
%
% plot(CV3)
% title('Case 3')