%% 画电压,为了写论文用 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')