代码搜索:整车检验

找到约 4,195 项符合「整车检验」的源代码

代码结果 4,195
www.eeworm.com/read/302994/13823975

m 2.白噪声.m

S=sqrt(0.05)*randn(100,1) %产生白噪声S(n) var(S) %检验方差 plot(S) %绘制波形图
www.eeworm.com/read/130875/5950006

VERSION 5.00 Begin VB.Form frmOption Appearance = 0 'Flat BackColor = &H80000005& Caption = "平均数检验" ClientHeight = 2325 ClientLeft = 60
www.eeworm.com/read/248976/12529511

m 1_3.m

S=sqrt(0.05)*randn(100,1) %产生白噪声S(n) var(S) %检验方差 plot(S) %绘制波形图
www.eeworm.com/read/429303/8811710

m lt4_1_4.m

%例4.1.4,拟合优度检验 x=0:100:1000; N=[39,58,47,33,25,22,12,6,6,2]; y=xnzh(x,N); theta=mle('exp',y); p0=expcdf(x(2:end),theta)-expcdf(x(1:end-1),theta); %%%调用拟合优度检验函数 youdu(p0,N)
www.eeworm.com/read/313598/7117642

m lt4_1_4.m

%例4.1.4,拟合优度检验 x=0:100:1000; N=[39,58,47,33,25,22,12,6,6,2]; y=xnzh(x,N); theta=mle('exp',y); p0=expcdf(x(2:end),theta)-expcdf(x(1:end-1),theta); %%%调用拟合优度检验函数 youdu(p0,N)
www.eeworm.com/read/328635/13010269

m lt4_1_4.m

%例4.1.4,拟合优度检验 x=0:100:1000; N=[39,58,47,33,25,22,12,6,6,2]; y=xnzh(x,N); theta=mle('exp',y); p0=expcdf(x(2:end),theta)-expcdf(x(1:end-1),theta); %%%调用拟合优度检验函数 youdu(p0,N)
www.eeworm.com/read/408814/11369117

m lt4_1_4.m

%例4.1.4,拟合优度检验 x=0:100:1000; N=[39,58,47,33,25,22,12,6,6,2]; y=xnzh(x,N); theta=mle('exp',y); p0=expcdf(x(2:end),theta)-expcdf(x(1:end-1),theta); %%%调用拟合优度检验函数 youdu(p0,N)
www.eeworm.com/read/277255/10650429

pas crcunit.pas

unit CRCUnit; interface uses Windows,SysUtils; type PBYTE =^Byte; //计算CRC检验码 function Get_CRC16(const pData:Pointer;nLength:Int
www.eeworm.com/read/277255/10650455

pas crcunit.pas

unit CRCUnit; interface uses Windows,SysUtils; type PBYTE =^Byte; //计算CRC检验码 function Get_CRC16(const pData:Pointer;nLength:Int
www.eeworm.com/read/104106/15710200

-

【素数检验法】 数的素性检验方法问题在近几年得到了飞速的发展,过去,要检验一个数 n 是否是素数,最简单的方法是用试除法,用小于n的平方根以下的所有素数去除n,若都除不尽,则n就是素数,否则为合数.这对于比较小的数来说还适用,若用计算机编成程序,对于10位数,几乎瞬间即可完成,对于一个20位数,则需要2个小时,对于一个50位数就需要一百亿年,令人吃惊的是,要检验一个一百位数,需要的时 ...