CDF示例代碼:
創(chuàng)新互聯(lián)公司2013年開創(chuàng)至今,是專業(yè)互聯(lián)網(wǎng)技術(shù)服務(wù)公司,擁有項(xiàng)目網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)網(wǎng)站策劃,項(xiàng)目實(shí)施與項(xiàng)目整合能力。我們以讓每一個(gè)夢想脫穎而出為使命,1280元曲江做網(wǎng)站,已為上家服務(wù),為曲江各地企業(yè)和個(gè)人服務(wù),聯(lián)系電話:18980820575
cdf.m
function [xTime,yPercentage]=cdf(initValue,step,endValue,sample); xTime=[]; yPercentage=[]; totalNum=length(sample); for i=initValue:step:endValue temp=length(find(sample<=i))/totalNum; xTime=[xTime,i]; yPercentage=[yPercentage,temp]; end
cdf_app.m
clear; initValue=0; step=0.1; sample1=[0.7,1.2,1.5,2.0,1.3,1.7,2.2,2.5,3.6]; sample2=[0.8,1.1,1.4,2.1,1.2,1.8,2.1,2.4,3.7,4.2,5.4]; endValue1=ceil(max(sample1)); endValue2=ceil(max(sample2)); endValue=max(endValue1,endValue2); [xTime1,yPercentage1]=cdf(initValue,step,endValue,sample1); [xTime2,yPercentage2]=cdf(initValue,step,endValue,sample2); plot(xTime1,yPercentage1,'r'); hold on plot(xTime2,yPercentage2,'g'); ylabel('F(x)') xlabel('Example(exp)') legend('曲線1','曲線2'); title('Title');
運(yùn)行效果:
實(shí)驗(yàn)數(shù)據(jù)處理的一些方式:在進(jìn)行仿真或者測試時(shí)得到的數(shù)據(jù)往往以Log的形式與其它提示信息混在一起輸出和記錄下來,因此需要從Log中提取需要的數(shù)據(jù)。一種方式是可以通過腳本程序處理Log文件提取數(shù)據(jù),如使用Perl語言;還有就是結(jié)合其它工具‘如一個(gè)Log.txt文件,使用Notpad++編輯器中編輯->替換功能中的正則表達(dá)式將無用的信息剔除’
對于一列數(shù)據(jù)如果想變成一行除去回車換行的數(shù)組,可以使用Matlab中數(shù)組的轉(zhuǎn)置功能,在工作區(qū)新建一個(gè)變量如ans,然后打開將數(shù)據(jù)粘貼進(jìn)去,在命令行下運(yùn)行“ans'”,再從變量中拷貝出轉(zhuǎn)置后的一行數(shù)據(jù)即可。