摘要: Scilab Help>> Statistics > Summaries > tabultabulfrequency of values of a matrix or vector [m]=tabul(X [,order])order: ‘i’ 升序 ‘d’ 降序,默认值统计向量或矩阵中 ... 阅读全文
posted @ 2015-03-22 13:04 JkReader 阅读(236) 评论(0) 推荐(0) 编辑
摘要: //m sci 代码function [xc,yc,Ra,Rb,theta,res] = ovalfit(x,y)//椭圆方程:x^2+res(1) xy+res(2) y^2+res(3) x+res(4) y+res(5)=0;//长半轴Ra,短半轴Rb,中心(xc1,yc1); 长轴与x轴夹角... 阅读全文
posted @ 2015-03-22 12:39 JkReader 阅读(345) 评论(0) 推荐(0) 编辑
摘要: //m文件 sci文件function [xc,yc,R,a] = circfit(x,y)//CIRCFIT Fits a circle in x,y plane// [XC, YC, R, A] = CIRCFIT(X,Y)// Result is center point (yc,xc) an... 阅读全文
posted @ 2015-03-22 12:32 JkReader 阅读(405) 评论(0) 推荐(0) 编辑
摘要: // .m .sci 文件 代码function [Res,u1,u2]=NormalTest(x,alpha)//u1=g1/sig1 ~ N(0,1) 偏度//u2=(g2-mu2)/sig2 ~ N(0,1) 峰度//N>=100. 当N0) then Res=0;else R... 阅读全文
posted @ 2015-03-22 12:18 JkReader 阅读(627) 评论(0) 推荐(0) 编辑
摘要: //k阶样本矩int varK(double* dList,int nCount,int k,double* pdRes){ if((NULL == dList) || (NULL == pdRes)) return -1; if(nDataCount10) return -4; ... 阅读全文
posted @ 2015-03-21 13:57 JkReader 阅读(532) 评论(0) 推荐(0) 编辑
摘要: //正态分布检验//NormalTest:正态分布检验 //ZF:正态分布累积函数//varK(dList,nCount,k,&dRes):k阶样本矩int NormalTest(double* dList,int nDataCount,double alpha,bool* pbRes){ do... 阅读全文
posted @ 2015-03-21 13:36 JkReader 阅读(1509) 评论(0) 推荐(0) 编辑
摘要: 正态分布数据检验-偏度峰度检验法正态数据偏度峰度检验法置信度:1-alpha数据样本数:nsig1=sqrt(6.0*(n-2)/(n+1)/(n+3));sig2=sqrt(24.0*n*(n-2)*(n-3)/(n+1)/(n+1)/(n+3)/(n+5));mu2=3.0-6.0/(n+1);... 阅读全文
posted @ 2015-03-21 13:04 JkReader 阅读(9228) 评论(0) 推荐(1) 编辑