REAL 03-T-7 March, 2003

Size: px
Start display at page:

Download "REAL 03-T-7 March, 2003"

Transcription

1 The Regonal Economcs Applcatons Laboratory (REAL) s a cooperatve venture between the Unversty of Illnos and the Federal Reserve Bank of Chcago focusng on the development and use of analytcal models for urban and regonal economc development. The purpose of the Dscusson Papers s to crculate ntermedate and fnal results of ths research among readers wthn and outsde REAL. The opnons and conclusons expressed n the papers are those of the authors and do not necessarly represent those of the Federal Reserve Bank of Chcago, Federal Reserve Board of Governors or the Unversty of Illnos. All requests and comments should be drected to Geoffrey J. D. Hewngs, Drector, Regonal Economcs Applcatons Laboratory, 607 South Matthews, Urbana, IL, , phone (217) , FAX (217) Web page: A SHORT NOTE ON THE NUMERICAL APPROXIMATION OF THE STANDARD NORMAL CUMULATIVE DISTRIBUTION AND ITS INVERSE by Chokr Drd REAL 03-T-7 March, 2003

2 A SHORT NOTE ON THE NUMERICAL APPROXIMATION OF THE STANDARD NORMAL CUMULATIVE DISTRIBUTION AND ITS INVERSE (March, 2003) Chokr Drd Department of Agrcultural and Consumer Economcs, Regonal Economcs Applcatons Laboratory, Unversty of Illnos at Urbana-Champagn. ABSTARCT: We ntroduce and evaluate the results of two numercal ntegraton methods: the ratonal fracton approxmaton, and the composte Gauss- Legendre quadrature. We provde computer codes n ANSI-C and Python for a fast and accurate computaton of the cumulatve dstrbuton functon (cdf) of the standard normal dstrbuton and the nverse cdf of the same functon. For the cdf we use the 5 th order Gauss-Legendre quadrature whch gves more accurate results compared to Excel and Matlab. The Inverse cdf computed usng ratonal fracton approxmatons gves a result that s seven-decmal place accurate.. Keywords: C/C++, Gauss-Legendre Quadarture, Normal dstrbuton, Numercal Integraton, Ratonal fracton approxmatons, Software. JEL Classfcaton: C63, C88, C89 All copyrghted materal and trademarks cted are the property of ther owners. Computer code ncluded herewth s provded as s wthout any warrantes. Computer codes n Python and ANSI-C are avalable from: 1

3 1. INTRODUCTION Varous research projects requre buldng software components from the ground up. If the ntegraton and calls to functons n commercal software are mpossble then unless large fnancal resources are commtted for the development of solutons smlar to the ones used n commercal software, code components for the project have to be bult n-house wth the explct purpose of havng a reasonable accuracy, speed, and low development costs. Numercal ntegraton s certanly one of the most used technques for runnng smulatons and statstcal analyss especally that more and more researchers n economcs and other areas of socal scences started tacklng problems that cannot be solved n closed form, Geweke (1995) gves examples n macroeconomcs nvolvng numercal ntegraton. Popular ntegraton methods range from very smple and naccurate methods lke rectangular and trapezodal rules (Kreyszg, 1993) to more complex and relatvely more accurate approaches lke the Newton-Cotes formulae and Gaussan quadratures, surveyed n Press et al. (1992), and Judd (1998). In the next secton, we ntroduce and evaluate the results of two numercal ntegraton methods: the ratonal fracton approxmatons, and the composte Gauss- Legendre quadrature. In secton 3, the computaton of the nverse cdf usng ratonal fracton approxmatons s evaluated. Secton 4, concludes ths short note. Computer code n Python and ANSI-C s avalable from the provded web URLs. We compare results provded by computer programs wrtten n Python and ANSI-C aganst results provded by bult-n functons n Mcrosoft's Excel, software usually used by students for quck calculatons, and Mathworks' Matlab, a more computaton orented software used by researchers. 2. NUMERICAL APPROXIMATION OF THE NORMAL STANDARD CUMULATIVE FUNCTION Most commercal statstcal and mathematcal applcatons nclude the error functon and ts complement n ther set of bult-n functons, however many powerful programmng envronment such as C/C++ and Python do not recognze such functons. The error functon s useful for most statstcal and econometrc purpose as t allows dervng the cumulatve normal dstrbuton (cdf) easly and accurately. The error functon and ts complement are defned as (Kennedy & Gentle, 1980): erf erfc x 2 x t dt ; x 0 (1) π 2 ( ) = exp( ) 0 2 x t dt π x ; x < 0 (2) = 1 erf 2 ( ) = exp( ) ( x) 2

4 Form (1) and (2), the exact standard normal cumulatve dstrbuton functon s gven by: ( ) F x ( x ) 1+ erf / 2 ; x 0 2 = 1 erf ( x / 2) ; x < 0 2 (3) Obvously, the accuracy of the results n (3) depends on the ntegraton method used to evaluate the ntegral functon n the error functon and on machne round-off errors. Most ntegraton method perform rather well on regons far from the tals of the dstrbuton however, as noted by Greene (2000, p.177), the tal areas of the normal dstrbuton are of mportance for econometrcans. In what follows, we examne two dfferent approxmaton technques, ratonal fracton approxmatons, and Gauss- Legendre quadrature, to llustrate the trade-off between speed and accuracy Ratonal Fracton Approxmatons Cody (1969) provdes ratonal fracton approxmatons that are relatvely accurate for the tme the artcle was publshed, the error functon s defned by: ( ) ( ) erf x = xr x ; 0< x 0.5 (4) erfc erfc 1 2 ( x) exp( x ) R2 ( x) 2 ( x ) ( ) = ; x 4.0 (5) exp x = + x R3 ( x ) x π ; x 4.0 (6) In (4)-(6), the ratonal fractons are defned by (7) where the coeffcents are provded by Kennedy & Gentle (1980, p ): p and q R ( x) = 3 = = 0 p x qx 2 2 ; R ( x) = 7 = = 0 p x qx ; R ( x) = 4 = = 0 p x qx 2 2 (7) 3

5 Gauss-Legendre(C) cdf Cody(Python) cdf x FIGURE 1: Gauss-Legendre quadrature vs. Ratonal fracton approxmatons before adjustment Usng the algorthm descrbed above wth Python 1 gves accurate enough results only for x [ 0.5,0.75]. Fgure 1 compares the cdf gven by Cody's algorthm and the Gauss-Legendre quadrature that we examne below, t s clear that Cody's algorthm cannot be of use f we seek accuracy. If we alter Cody's algorthm as follows we obtan a much better precson wthout affectng ts speed: ( ) ( ) erf x = xr x ; 0< x 1.5 (8) 1 ( ) ( x) ( x ) R1( x ) R2( x ) R3( x ) erfc = exp ; x 4.0 (9) The results of the adjusted algorthm match the overall shape of the cumulatve dstrbuton functon however, lke wth Matlab, t reaches zero (resp. 1) at x (resp. x ), whch creates a problem f we need to dvde by (resp. log) the probablty. We wll see next that the adjusted Cody algorthm whle fast s less precse than the Composte Gauss-Legendre quadrature (fgures 2 and 3). 1 The Python code avalable requres Numerc-22.0, the Numercal Extenson to Python, wrtten by Paul F. Dubos. 4

6 2.2. Composte Gauss-Legendre Quadrature b The Gauss quadrature, conssts n approxmatng the ntegral ( ) ( ) by the summaton wf( x) K where: f : k = 1, ( ) I = w x f x dx w x a weght functon, the x [ ab, ] are roots of Legendre polynomals of order K that are orthogonal to ( ) a w x, and the are the roots' weghts. Ths approach has been used wth varous weght functons, the smplest and yet very accurate one s attrbuted to Legendre, see Press et al. (1992) for more detals regardng the methodology and other versons of the Gauss quadrature. The ntegraton method known as Gauss-Legendre quadrature s Gauss's quadrature wth w( x) = 1; x [ 1,1 ], unlke Smpson's method and Newton-Cotes formulae, that use arbtrary and equally spaced ponts, the Gaussan quadrature determnes precse ponts n [ ab, ] symmetrcally around zero, but not necessarly equally spaced, therefore t s not approprate for tabulated data. Press et al. (1992), offer addtonal explanatons and a computer routne that helps fndng Legendre polynomals roots and ther respectve weghts, the polynomals are defned by: P0 ( x ) = 1; P1 ( x) = x; ( k + 1) P = ( 2k + 1) xp kp ; k 1 (10) k+ 1 k k 1 The followng theorem announces a property of Gauss-Legendre quadrature, relatng the order of the quadrature and the shape of the ntegrand to the precson of the approxmaton. THEOREM: The Gauss-Legendre quadrature s exact f f ( x ) s a polynomal of degree less than or equal to 2n 1, where n s Legendre polynomal number of roots. Recall that the Gauss-Legendre quadrature apples only over the nterval [ 1,1], n Harrs & Stoker (1998, p. 571), for any chosen nterval [ ab, ], the ntegral f ( ) rewrtten wth the substtuton b a 1 b a b a b+ a f ( x) dx = f z+ dz b a b + x = z+ a to gve: 2 2 b a w 's x dx s (11) 5

7 Wth k beng the order of Lagrange polynomal (.e. number of ponts), the error expected from the Gauss-Legendre quadrature after the change of varable s (Chapra & Canale, 1998): E k = 2k ( k! ) ( k ) ( k) ! 3 f ( 2k ) ( ξ ) ; 1 ξ 1 (12) 1.00E-04 Excel v. GL Matlab v. GL 8.00E E E E E Absolute Error FIGURE 2: Absolute error of the Gauss-Legendre quadarture compared to Excel and Matlab Lmtng ourselves to the ffth order of Legendre polynomal, we approxmate the normal cdf, usng the code n Python; the error n (12) becomes very small and s (10) f ( ξ ) approxmately equal to ; ξ [ 1,1]. Whle the algorthm gves accurate 1.23E+09 results t s conspcuously slow 2, ths requres usng a faster programmng language lke ANSI-C. The advantage of the composte Gauss-Legendre quadrature s that t s precse and does not converge to zero or one over a large nterval; n our test, we use the [- 15.0,15.0] nterval wth 0.25 step sze. The analyss of the error on the Gauss-Legendre quadarature shows that the maxmum error compared to results from Matlab and Excel 2 On a Pentum III 450 Mhz. 6

8 s 1.0E-4 (fgure 2), and that t s always less than the absolute error between Cody's adjusted algorthm and Matlab (fgure 3). 2.50E-03 Gauss-Legendre v. Adj. Cody Matlab v. Cody 2.00E E E E E x FIGURE 3: Absolute error between Gauss-Legendre quadrature, Matlab, and Ratonal fractons approxmaton after adjustment 3. INVERSE OF STANDARD NORMAL CUMULATIVE DISTRIBUTION Wth F (). beng the normal cumulatve dstrbuton functon (cdf), gven a probablty p, we seek to approxmate the pont x such that: 1 ( ) = = ( ) ; ( px, ) [ 0,1] F x p x F p (13) However, the nverse functon of F (.) s not possble to obtan n a closed form, varous approxmaton methods were suggested. We test the algorthm developed by Odeh & Evans (1974) and descrbed n Kennedy & Gentle (1980, p ), the algorthm s based on the approxmaton of ratonal fractons derved from Taylor seres. Compared to results gven by Matlab and Mcrosoft Excel n table 1, the algorthm wrtten n Python s seven-decmal-place accurate, whch s an approprate approxmaton consderng that x. 7

9 Table 1: Evaluaton of the results of the nverse cdf approxmaton p MS-Excel Matlab Approx. 0 #NUM! -Inf -1.00E #NUM! +Inf 1.00E CONCLUSION Varous research problems arse when a model cannot be solved n a closed form, n addton to smulatng the model nstead of solvng t, researchers can analyze the problem numercally. In ths short note, we provde explanatons and computer code to compute the cumulatve standard normal dstrbuton functon and ts nverse; we retan results form the 5 th order composte Gauss-Legendre quadrature n ANSI-C and the ratonal fracton approxmatons n Python as precse and fast numercal approxmatons. The composte Gauss-Legendre quadrature may be mproved upon by usng more ponts for better precson, and fewer subntervals for more speed. Addtonal ponts and ther weght can be computed (Press et al., 1992 and Vetterlng et al., 1992) and found n varous references (Judd, 1998). REFERENCES Chapra, S. C. & R. P. Canale (1998): Numercal Methods for Engneers: Wth Programmng and Software Applcatons, 3 rd ed., McGraw-Hll, Boston. Cody, W. J. (1969): "Ratonal Chebyshev Approxmatons for the Error functon, Mathematcal Computaton 23, Geweke, J. (1995): "Monte Carlo Smulaton and Numercal Integraton", Federal Reserve Bank of Mnneapols, Research Department Staff Report 192. Greene, W. H. (2000): Econometrc Analyss, 4 th ed., Prentce Hall, New Jersey. Harrs, J. W. & H. Stocker (1998): Handbook of Mathematcs and Computatonal Scence, Sprnger-Verlag, New York. Judd, K. L. (1998): Numercal Methods n Economcs, MIT Press, Cambrdge. 8

10 Kennedy, W. J. Jr. & J. E. Gentle (1980): Statstcal Computng, Marcel Dekker, New York. Kreyszg, E. (1993): Advanced Engneerng Mathematcs, 7 th ed., John Wley & Sons, New York. Odeh, R. E. & J. O. Evans (1974): "Algorthm AS 70: Percentage Ponts of the Normal Dstrbuton", Appled Statstcs 23, Press, W. H., S. A. Teukolsky, W. T. Vetterlg, & B. P. Flannery (1992): Numercal Recpes n C: The Art of Scentfc Computng, 2 nd ed., Cambrdge Unversty Press, Cambrdge. Vetterlng, W. T., S. A. Teukolsky, W. H. Press, & B. P. Flannery (1992): Numercal Recpes: Examples Book (C), 2 nd ed., Cambrdge Unversty Press, Cambrdge. 9

11 APPENDIX A1. ANSI-C CODE FOR THE CDF (CDF.C) /*********************************************************************/ /* Purpose: Computes cdf of standard normal dst. usng a composte */ /* ffth-order Gauss-Legendre quadrature */ /* Code by: Chokr Drd (December, 2002) */ /*********************************************************************/ #nclude <math.h> #nclude <stdo.h> long double GL(long double, long double); /* ntegraton over closed nterval */ long double cdf (long double); /* cdf functon */ long double f(long double); /* functon to ntegrate */ double p=0.; nt man () { /* the man functon to get the cdf s cdf() */ /* the man() block s used just to generate values for testng */ long double x=-15; whle (x<=15.){ p=cdf(x); prntf("%.17e\n",p); x=x+.25; return 0; /* cdf functon */ long double cdf(long double x){ f(x>=0.){ /* Integraton on a closed nterval */ long double GL(long double a, long double b) { long double y1=0, y2=0, y3=0, y4=0, y5=0; return (1.+GL(0,x/sqrt(2.)))/2.; else { return (1.-GL(0,-x/sqrt(2.)))/2.; long double x1=-sqrt( *sqrt(70.))/21., x2=-sqrt( *sqrt(70.))/21.; long double x3=0, x4=-x2, x5=-x1; long double w1=( *sqrt(70.))/900., w2=( *sqrt(70.))/900.; long double w3=128./225.,w4=w2,w5=w1; nt n=4800; long double =0, s=0, h=(b-a)/n; 10

12 for (=0;<=n;++){ y1=h*x1/2.+(h+2.*(a+*h))/2.; y2=h*x2/2.+(h+2.*(a+*h))/2.; y3=h*x3/2.+(h+2.*(a+*h))/2.; y4=h*x4/2.+(h+2.*(a+*h))/2.; y5=h*x5/2.+(h+2.*(a+*h))/2.; s=s+h*(w1*f(y1)+w2*f(y2)+w3*f(y3)+w4*f(y4)+w5*f(y5))/2.; return s; /* Functon f, to ntegrate */ long double f(long double x){ return (2./sqrt(22./7.))*exp(-pow(x,2.)); A2. PYTHON CODE FOR THE CDF USING GAUSS-LEGENDRE QUADRATURE (CDF-GL.PY) """ Purpose: Computes cdf of standard normal dst. usng a composte ffth-order Gauss-Legendre quadrature Code by: Chokr Drd (December, 2002) """ from Numerc mport * " cdf functon " def cdf(x): f x>=0.: return (1.+GL(0,x/sqrt(2.)))/2. else: return (1.-GL(0,-x/sqrt(2.)))/2. " Integraton on a closed nterval " def GL(a,b): y1=0. y2=0. y3=0. y4=0. y5=0. x1=-sqrt( *sqrt(70.))/21. x2=-sqrt( *sqrt(70.))/21. x3=0. x4=-x2 x5=-x1 w1=( *sqrt(70.))/900. w2=( *sqrt(70.))/900. w3=128./225. w4=w2 w5=w1 n=4800 s=0. 11

13 h=(b-a)/n for n range(0,n,1): y1=h*x1/2.+(h+2.*(a+*h))/2. y2=h*x2/2.+(h+2.*(a+*h))/2. y3=h*x3/2.+(h+2.*(a+*h))/2. y4=h*x4/2.+(h+2.*(a+*h))/2. y5=h*x5/2.+(h+2.*(a+*h))/2. s=s+h*(w1*f(y1)+w2*f(y2)+w3*f(y3)+w4*f(y4)+w5*f(y5))/2.; return s; " Functon f, to ntegrate " def f(x): return (2./sqrt(22./7.))*exp(-x**2.); A3. PYTHON CODE FOR THE CDF USING RATIONAL FRACTIONS APPROXIMATION (CDF.PY) """ Purpose: Algorthm to compute cdf of a Gaussan dstrbuton The cdf s 0 for all x < and s 1 for all x > Before adjustment, the accuracy of ths algorthm s acceptable only for ponts -0.5<=x<=0.75 Coded by: Chokr Drd (December, 2002) Based on: Kennedy & Gentle(1980): Statstcal Computng, Marcel Dekker, p """ from Numerc mport * def cdf(x): f x > 0.: y=x else: y=-x f y >= 0. and y <= 1.5: p=(1.+erf(y/sqrt(2.)))/2. f y > 1.5: p=1.-erfc(y/sqrt(2.))/2. f x > 0.: return p else: return 1.-p def erf(x): " for 0<x<=0.5 " return x*r1(x) def erfc(x): " for <=x<=4. " f x > and x < 4.: return exp(-x**2.)*(0.5*r1(x**2.)+0.2*r2(x**2.)+0.3*r3(x**2.)) f x >= 4.: " for x>=4. " 12

14 return (exp(-x**2.)/x)*(1./sqrt(22./7.)+r3(x**-2.)/(x**2.)) def R1(x): N=0. D=0. p=[ e2, e1, , e-2] q=[ e2, e1, e1,1.] for n range(0,3,1): N=N+p[]*x**(2.*) D=D+q[]*x**(2.*) return N/D def R2(x): N=0. D=0. p=[ e2, e2, e2, e2, e1, , e-1, e-7] q=[ e2, e2, e2, e2, e2, e1, e1,1.] for n range(0,7,1): N=N+p[]*x**(-2.*) D=D+q[]*x**(-2.*) return N/D def R3(x): N=0. D=0. p=[ e-3, e-2, e-1, e-1, e- 2] q=[ e-2, e- 1, , ,1.] for n range(0,4,1): N=N+p[]*x**(-2.*) D=D+q[]*x**(-2.*) return N/D A4. PYTHON CODE FOR THE INVERSE CDF (INVCDF.PY) """ Purpose: Algorthm to compute nverse cdf of a Gaussan dstrbuton for values of p; 1.0E-20<p<1 Coded by: Chokr Drd (November, 2002) Based on: Kennedy & Gentle(1980): Statstcal Computng, Marcel Dekker, p """ from Numerc mport * def nvcdf(p): 13

15 f p>0.5: return -nv(p) else: return nv(p) def nv(p): xp=0. lm = 1.e-20 p0 = p1 = -1.0 p2 = p3 = p4 = e-4 q0 = q1 = q2 = q3 = q4 = e-2 f p < lm or p == 1.: return -1./lm f p == 0.5: return 0. f p > 0.5: p=1.-p y = sqrt(log(1./p**2.)) xp= y+((((y*p4+p3)*y+p2)*y+p1)*y+p0)/((((y*q4+q3)*y+q2)*y+q1)*y+q0) f p < 0.5: xp = -xp return xp 14

An Accurate Evaluation of Integrals in Convex and Non convex Polygonal Domain by Twelve Node Quadrilateral Finite Element Method

An Accurate Evaluation of Integrals in Convex and Non convex Polygonal Domain by Twelve Node Quadrilateral Finite Element Method Internatonal Journal of Computatonal and Appled Mathematcs. ISSN 89-4966 Volume, Number (07), pp. 33-4 Research Inda Publcatons http://www.rpublcaton.com An Accurate Evaluaton of Integrals n Convex and

More information

NUMERICAL SOLVING OPTIMAL CONTROL PROBLEMS BY THE METHOD OF VARIATIONS

NUMERICAL SOLVING OPTIMAL CONTROL PROBLEMS BY THE METHOD OF VARIATIONS ARPN Journal of Engneerng and Appled Scences 006-017 Asan Research Publshng Network (ARPN). All rghts reserved. NUMERICAL SOLVING OPTIMAL CONTROL PROBLEMS BY THE METHOD OF VARIATIONS Igor Grgoryev, Svetlana

More information

Assignment # 2. Farrukh Jabeen Algorithms 510 Assignment #2 Due Date: June 15, 2009.

Assignment # 2. Farrukh Jabeen Algorithms 510 Assignment #2 Due Date: June 15, 2009. Farrukh Jabeen Algorthms 51 Assgnment #2 Due Date: June 15, 29. Assgnment # 2 Chapter 3 Dscrete Fourer Transforms Implement the FFT for the DFT. Descrbed n sectons 3.1 and 3.2. Delverables: 1. Concse descrpton

More information

X- Chart Using ANOM Approach

X- Chart Using ANOM Approach ISSN 1684-8403 Journal of Statstcs Volume 17, 010, pp. 3-3 Abstract X- Chart Usng ANOM Approach Gullapall Chakravarth 1 and Chaluvad Venkateswara Rao Control lmts for ndvdual measurements (X) chart are

More information

Mathematics 256 a course in differential equations for engineering students

Mathematics 256 a course in differential equations for engineering students Mathematcs 56 a course n dfferental equatons for engneerng students Chapter 5. More effcent methods of numercal soluton Euler s method s qute neffcent. Because the error s essentally proportonal to the

More information

S1 Note. Basis functions.

S1 Note. Basis functions. S1 Note. Bass functons. Contents Types of bass functons...1 The Fourer bass...2 B-splne bass...3 Power and type I error rates wth dfferent numbers of bass functons...4 Table S1. Smulaton results of type

More information

Computation of Ex-Core Detector Weighting Functions for VVER-440 Using MCNP5

Computation of Ex-Core Detector Weighting Functions for VVER-440 Using MCNP5 Computaton of Ex-Core Detector Weghtng Functons for VVER-440 Usng MCNP5 Gabrel Farkas, Jozef Lpka, Ján Haščík, Vladmír Slugeň Slovak Unversty of Technology, Faculty of Electrcal Engneerng and Informaton

More information

A Binarization Algorithm specialized on Document Images and Photos

A Binarization Algorithm specialized on Document Images and Photos A Bnarzaton Algorthm specalzed on Document mages and Photos Ergna Kavalleratou Dept. of nformaton and Communcaton Systems Engneerng Unversty of the Aegean kavalleratou@aegean.gr Abstract n ths paper, a

More information

Problem Definitions and Evaluation Criteria for Computational Expensive Optimization

Problem Definitions and Evaluation Criteria for Computational Expensive Optimization Problem efntons and Evaluaton Crtera for Computatonal Expensve Optmzaton B. Lu 1, Q. Chen and Q. Zhang 3, J. J. Lang 4, P. N. Suganthan, B. Y. Qu 6 1 epartment of Computng, Glyndwr Unversty, UK Faclty

More information

AC : TEACHING SPREADSHEET-BASED NUMERICAL ANAL- YSIS WITH VISUAL BASIC FOR APPLICATIONS AND VIRTUAL IN- STRUMENTS

AC : TEACHING SPREADSHEET-BASED NUMERICAL ANAL- YSIS WITH VISUAL BASIC FOR APPLICATIONS AND VIRTUAL IN- STRUMENTS AC 2011-1615: TEACHING SPREADSHEET-BASED NUMERICAL ANAL- YSIS WITH VISUAL BASIC FOR APPLICATIONS AND VIRTUAL IN- STRUMENTS Nkunja Swan, South Carolna State Unversty Dr. Swan s currently a Professor at

More information

Empirical Distributions of Parameter Estimates. in Binary Logistic Regression Using Bootstrap

Empirical Distributions of Parameter Estimates. in Binary Logistic Regression Using Bootstrap Int. Journal of Math. Analyss, Vol. 8, 4, no. 5, 7-7 HIKARI Ltd, www.m-hkar.com http://dx.do.org/.988/jma.4.494 Emprcal Dstrbutons of Parameter Estmates n Bnary Logstc Regresson Usng Bootstrap Anwar Ftranto*

More information

2x x l. Module 3: Element Properties Lecture 4: Lagrange and Serendipity Elements

2x x l. Module 3: Element Properties Lecture 4: Lagrange and Serendipity Elements Module 3: Element Propertes Lecture : Lagrange and Serendpty Elements 5 In last lecture note, the nterpolaton functons are derved on the bass of assumed polynomal from Pascal s trangle for the fled varable.

More information

Helsinki University Of Technology, Systems Analysis Laboratory Mat Independent research projects in applied mathematics (3 cr)

Helsinki University Of Technology, Systems Analysis Laboratory Mat Independent research projects in applied mathematics (3 cr) Helsnk Unversty Of Technology, Systems Analyss Laboratory Mat-2.08 Independent research projects n appled mathematcs (3 cr) "! #$&% Antt Laukkanen 506 R ajlaukka@cc.hut.f 2 Introducton...3 2 Multattrbute

More information

Course Introduction. Algorithm 8/31/2017. COSC 320 Advanced Data Structures and Algorithms. COSC 320 Advanced Data Structures and Algorithms

Course Introduction. Algorithm 8/31/2017. COSC 320 Advanced Data Structures and Algorithms. COSC 320 Advanced Data Structures and Algorithms Course Introducton Course Topcs Exams, abs, Proects A quc loo at a few algorthms 1 Advanced Data Structures and Algorthms Descrpton: We are gong to dscuss algorthm complexty analyss, algorthm desgn technques

More information

Smoothing Spline ANOVA for variable screening

Smoothing Spline ANOVA for variable screening Smoothng Splne ANOVA for varable screenng a useful tool for metamodels tranng and mult-objectve optmzaton L. Rcco, E. Rgon, A. Turco Outlne RSM Introducton Possble couplng Test case MOO MOO wth Game Theory

More information

NAG Fortran Library Chapter Introduction. G10 Smoothing in Statistics

NAG Fortran Library Chapter Introduction. G10 Smoothing in Statistics Introducton G10 NAG Fortran Lbrary Chapter Introducton G10 Smoothng n Statstcs Contents 1 Scope of the Chapter... 2 2 Background to the Problems... 2 2.1 Smoothng Methods... 2 2.2 Smoothng Splnes and Regresson

More information

Support Vector Machines

Support Vector Machines /9/207 MIST.6060 Busness Intellgence and Data Mnng What are Support Vector Machnes? Support Vector Machnes Support Vector Machnes (SVMs) are supervsed learnng technques that analyze data and recognze patterns.

More information

Solving two-person zero-sum game by Matlab

Solving two-person zero-sum game by Matlab Appled Mechancs and Materals Onlne: 2011-02-02 ISSN: 1662-7482, Vols. 50-51, pp 262-265 do:10.4028/www.scentfc.net/amm.50-51.262 2011 Trans Tech Publcatons, Swtzerland Solvng two-person zero-sum game by

More information

AVO Modeling of Monochromatic Spherical Waves: Comparison to Band-Limited Waves

AVO Modeling of Monochromatic Spherical Waves: Comparison to Band-Limited Waves AVO Modelng of Monochromatc Sphercal Waves: Comparson to Band-Lmted Waves Charles Ursenbach* Unversty of Calgary, Calgary, AB, Canada ursenbach@crewes.org and Arnm Haase Unversty of Calgary, Calgary, AB,

More information

Monte Carlo Integration

Monte Carlo Integration Introducton Monte Carlo Integraton Dgtal Image Synthess Yung-Yu Chuang 11/9/005 The ntegral equatons generally don t have analytc solutons, so we must turn to numercal methods. L ( o p,ωo) = L e ( p,ωo)

More information

Type-2 Fuzzy Non-uniform Rational B-spline Model with Type-2 Fuzzy Data

Type-2 Fuzzy Non-uniform Rational B-spline Model with Type-2 Fuzzy Data Malaysan Journal of Mathematcal Scences 11(S) Aprl : 35 46 (2017) Specal Issue: The 2nd Internatonal Conference and Workshop on Mathematcal Analyss (ICWOMA 2016) MALAYSIAN JOURNAL OF MATHEMATICAL SCIENCES

More information

Improvement of Spatial Resolution Using BlockMatching Based Motion Estimation and Frame. Integration

Improvement of Spatial Resolution Using BlockMatching Based Motion Estimation and Frame. Integration Improvement of Spatal Resoluton Usng BlockMatchng Based Moton Estmaton and Frame Integraton Danya Suga and Takayuk Hamamoto Graduate School of Engneerng, Tokyo Unversty of Scence, 6-3-1, Nuku, Katsuska-ku,

More information

Monte Carlo 1: Integration

Monte Carlo 1: Integration Monte Carlo : Integraton Prevous lecture: Analytcal llumnaton formula Ths lecture: Monte Carlo Integraton Revew random varables and probablty Samplng from dstrbutons Samplng from shapes Numercal calculaton

More information

Accounting for the Use of Different Length Scale Factors in x, y and z Directions

Accounting for the Use of Different Length Scale Factors in x, y and z Directions 1 Accountng for the Use of Dfferent Length Scale Factors n x, y and z Drectons Taha Soch (taha.soch@kcl.ac.uk) Imagng Scences & Bomedcal Engneerng, Kng s College London, The Rayne Insttute, St Thomas Hosptal,

More information

Steps for Computing the Dissimilarity, Entropy, Herfindahl-Hirschman and. Accessibility (Gravity with Competition) Indices

Steps for Computing the Dissimilarity, Entropy, Herfindahl-Hirschman and. Accessibility (Gravity with Competition) Indices Steps for Computng the Dssmlarty, Entropy, Herfndahl-Hrschman and Accessblty (Gravty wth Competton) Indces I. Dssmlarty Index Measurement: The followng formula can be used to measure the evenness between

More information

Parallelism for Nested Loops with Non-uniform and Flow Dependences

Parallelism for Nested Loops with Non-uniform and Flow Dependences Parallelsm for Nested Loops wth Non-unform and Flow Dependences Sam-Jn Jeong Dept. of Informaton & Communcaton Engneerng, Cheonan Unversty, 5, Anseo-dong, Cheonan, Chungnam, 330-80, Korea. seong@cheonan.ac.kr

More information

Classifier Selection Based on Data Complexity Measures *

Classifier Selection Based on Data Complexity Measures * Classfer Selecton Based on Data Complexty Measures * Edth Hernández-Reyes, J.A. Carrasco-Ochoa, and J.Fco. Martínez-Trndad Natonal Insttute for Astrophyscs, Optcs and Electroncs, Lus Enrque Erro No.1 Sta.

More information

Content Based Image Retrieval Using 2-D Discrete Wavelet with Texture Feature with Different Classifiers

Content Based Image Retrieval Using 2-D Discrete Wavelet with Texture Feature with Different Classifiers IOSR Journal of Electroncs and Communcaton Engneerng (IOSR-JECE) e-issn: 78-834,p- ISSN: 78-8735.Volume 9, Issue, Ver. IV (Mar - Apr. 04), PP 0-07 Content Based Image Retreval Usng -D Dscrete Wavelet wth

More information

Computer models of motion: Iterative calculations

Computer models of motion: Iterative calculations Computer models o moton: Iteratve calculatons OBJECTIVES In ths actvty you wll learn how to: Create 3D box objects Update the poston o an object teratvely (repeatedly) to anmate ts moton Update the momentum

More information

An Entropy-Based Approach to Integrated Information Needs Assessment

An Entropy-Based Approach to Integrated Information Needs Assessment Dstrbuton Statement A: Approved for publc release; dstrbuton s unlmted. An Entropy-Based Approach to ntegrated nformaton Needs Assessment June 8, 2004 Wllam J. Farrell Lockheed Martn Advanced Technology

More information

Proper Choice of Data Used for the Estimation of Datum Transformation Parameters

Proper Choice of Data Used for the Estimation of Datum Transformation Parameters Proper Choce of Data Used for the Estmaton of Datum Transformaton Parameters Hakan S. KUTOGLU, Turkey Key words: Coordnate systems; transformaton; estmaton, relablty. SUMMARY Advances n technologes and

More information

A MOVING MESH APPROACH FOR SIMULATION BUDGET ALLOCATION ON CONTINUOUS DOMAINS

A MOVING MESH APPROACH FOR SIMULATION BUDGET ALLOCATION ON CONTINUOUS DOMAINS Proceedngs of the Wnter Smulaton Conference M E Kuhl, N M Steger, F B Armstrong, and J A Jones, eds A MOVING MESH APPROACH FOR SIMULATION BUDGET ALLOCATION ON CONTINUOUS DOMAINS Mark W Brantley Chun-Hung

More information

Monte Carlo 1: Integration

Monte Carlo 1: Integration Monte Carlo : Integraton Prevous lecture: Analytcal llumnaton formula Ths lecture: Monte Carlo Integraton Revew random varables and probablty Samplng from dstrbutons Samplng from shapes Numercal calculaton

More information

Complex Numbers. Now we also saw that if a and b were both positive then ab = a b. For a second let s forget that restriction and do the following.

Complex Numbers. Now we also saw that if a and b were both positive then ab = a b. For a second let s forget that restriction and do the following. Complex Numbers The last topc n ths secton s not really related to most of what we ve done n ths chapter, although t s somewhat related to the radcals secton as we wll see. We also won t need the materal

More information

F Geometric Mean Graphs

F Geometric Mean Graphs Avalable at http://pvamu.edu/aam Appl. Appl. Math. ISSN: 1932-9466 Vol. 10, Issue 2 (December 2015), pp. 937-952 Applcatons and Appled Mathematcs: An Internatonal Journal (AAM) F Geometrc Mean Graphs A.

More information

Lecture #15 Lecture Notes

Lecture #15 Lecture Notes Lecture #15 Lecture Notes The ocean water column s very much a 3-D spatal entt and we need to represent that structure n an economcal way to deal wth t n calculatons. We wll dscuss one way to do so, emprcal

More information

An Optimal Algorithm for Prufer Codes *

An Optimal Algorithm for Prufer Codes * J. Software Engneerng & Applcatons, 2009, 2: 111-115 do:10.4236/jsea.2009.22016 Publshed Onlne July 2009 (www.scrp.org/journal/jsea) An Optmal Algorthm for Prufer Codes * Xaodong Wang 1, 2, Le Wang 3,

More information

Determining the Optimal Bandwidth Based on Multi-criterion Fusion

Determining the Optimal Bandwidth Based on Multi-criterion Fusion Proceedngs of 01 4th Internatonal Conference on Machne Learnng and Computng IPCSIT vol. 5 (01) (01) IACSIT Press, Sngapore Determnng the Optmal Bandwdth Based on Mult-crteron Fuson Ha-L Lang 1+, Xan-Mn

More information

ON SOME ENTERTAINING APPLICATIONS OF THE CONCEPT OF SET IN COMPUTER SCIENCE COURSE

ON SOME ENTERTAINING APPLICATIONS OF THE CONCEPT OF SET IN COMPUTER SCIENCE COURSE Yordzhev K., Kostadnova H. Інформаційні технології в освіті ON SOME ENTERTAINING APPLICATIONS OF THE CONCEPT OF SET IN COMPUTER SCIENCE COURSE Yordzhev K., Kostadnova H. Some aspects of programmng educaton

More information

An Indian Journal FULL PAPER ABSTRACT KEYWORDS. Trade Science Inc.

An Indian Journal FULL PAPER ABSTRACT KEYWORDS. Trade Science Inc. [Type text] [Type text] [Type text] ISSN : 97-735 Volume Issue 9 BoTechnology An Indan Journal FULL PAPER BTAIJ, (9), [333-3] Matlab mult-dmensonal model-based - 3 Chnese football assocaton super league

More information

User Authentication Based On Behavioral Mouse Dynamics Biometrics

User Authentication Based On Behavioral Mouse Dynamics Biometrics User Authentcaton Based On Behavoral Mouse Dynamcs Bometrcs Chee-Hyung Yoon Danel Donghyun Km Department of Computer Scence Department of Computer Scence Stanford Unversty Stanford Unversty Stanford, CA

More information

Kiran Joy, International Journal of Advanced Engineering Technology E-ISSN

Kiran Joy, International Journal of Advanced Engineering Technology E-ISSN Kran oy, nternatonal ournal of Advanced Engneerng Technology E-SS 0976-3945 nt Adv Engg Tech/Vol. V/ssue /Aprl-une,04/9-95 Research Paper DETERMATO O RADATVE VEW ACTOR WTOUT COSDERG TE SADOWG EECT Kran

More information

On Some Entertaining Applications of the Concept of Set in Computer Science Course

On Some Entertaining Applications of the Concept of Set in Computer Science Course On Some Entertanng Applcatons of the Concept of Set n Computer Scence Course Krasmr Yordzhev *, Hrstna Kostadnova ** * Assocate Professor Krasmr Yordzhev, Ph.D., Faculty of Mathematcs and Natural Scences,

More information

Term Weighting Classification System Using the Chi-square Statistic for the Classification Subtask at NTCIR-6 Patent Retrieval Task

Term Weighting Classification System Using the Chi-square Statistic for the Classification Subtask at NTCIR-6 Patent Retrieval Task Proceedngs of NTCIR-6 Workshop Meetng, May 15-18, 2007, Tokyo, Japan Term Weghtng Classfcaton System Usng the Ch-square Statstc for the Classfcaton Subtask at NTCIR-6 Patent Retreval Task Kotaro Hashmoto

More information

Cluster Analysis of Electrical Behavior

Cluster Analysis of Electrical Behavior Journal of Computer and Communcatons, 205, 3, 88-93 Publshed Onlne May 205 n ScRes. http://www.scrp.org/ournal/cc http://dx.do.org/0.4236/cc.205.350 Cluster Analyss of Electrcal Behavor Ln Lu Ln Lu, School

More information

An Application of the Dulmage-Mendelsohn Decomposition to Sparse Null Space Bases of Full Row Rank Matrices

An Application of the Dulmage-Mendelsohn Decomposition to Sparse Null Space Bases of Full Row Rank Matrices Internatonal Mathematcal Forum, Vol 7, 2012, no 52, 2549-2554 An Applcaton of the Dulmage-Mendelsohn Decomposton to Sparse Null Space Bases of Full Row Rank Matrces Mostafa Khorramzadeh Department of Mathematcal

More information

A New Approach For the Ranking of Fuzzy Sets With Different Heights

A New Approach For the Ranking of Fuzzy Sets With Different Heights New pproach For the ankng of Fuzzy Sets Wth Dfferent Heghts Pushpnder Sngh School of Mathematcs Computer pplcatons Thapar Unversty, Patala-7 00 Inda pushpndersnl@gmalcom STCT ankng of fuzzy sets plays

More information

Fast Computation of Shortest Path for Visiting Segments in the Plane

Fast Computation of Shortest Path for Visiting Segments in the Plane Send Orders for Reprnts to reprnts@benthamscence.ae 4 The Open Cybernetcs & Systemcs Journal, 04, 8, 4-9 Open Access Fast Computaton of Shortest Path for Vstng Segments n the Plane Ljuan Wang,, Bo Jang

More information

The Greedy Method. Outline and Reading. Change Money Problem. Greedy Algorithms. Applications of the Greedy Strategy. The Greedy Method Technique

The Greedy Method. Outline and Reading. Change Money Problem. Greedy Algorithms. Applications of the Greedy Strategy. The Greedy Method Technique //00 :0 AM Outlne and Readng The Greedy Method The Greedy Method Technque (secton.) Fractonal Knapsack Problem (secton..) Task Schedulng (secton..) Mnmum Spannng Trees (secton.) Change Money Problem Greedy

More information

Analysis of Continuous Beams in General

Analysis of Continuous Beams in General Analyss of Contnuous Beams n General Contnuous beams consdered here are prsmatc, rgdly connected to each beam segment and supported at varous ponts along the beam. onts are selected at ponts of support,

More information

Parallel Numerics. 1 Preconditioning & Iterative Solvers (From 2016)

Parallel Numerics. 1 Preconditioning & Iterative Solvers (From 2016) Technsche Unverstät München WSe 6/7 Insttut für Informatk Prof. Dr. Thomas Huckle Dpl.-Math. Benjamn Uekermann Parallel Numercs Exercse : Prevous Exam Questons Precondtonng & Iteratve Solvers (From 6)

More information

Analysis of 3D Cracks in an Arbitrary Geometry with Weld Residual Stress

Analysis of 3D Cracks in an Arbitrary Geometry with Weld Residual Stress Analyss of 3D Cracks n an Arbtrary Geometry wth Weld Resdual Stress Greg Thorwald, Ph.D. Ted L. Anderson, Ph.D. Structural Relablty Technology, Boulder, CO Abstract Materals contanng flaws lke nclusons

More information

Compiler Design. Spring Register Allocation. Sample Exercises and Solutions. Prof. Pedro C. Diniz

Compiler Design. Spring Register Allocation. Sample Exercises and Solutions. Prof. Pedro C. Diniz Compler Desgn Sprng 2014 Regster Allocaton Sample Exercses and Solutons Prof. Pedro C. Dnz USC / Informaton Scences Insttute 4676 Admralty Way, Sute 1001 Marna del Rey, Calforna 90292 pedro@s.edu Regster

More information

Random Variables and Probability Distributions

Random Variables and Probability Distributions Random Varables and Probablty Dstrbutons Some Prelmnary Informaton Scales on Measurement IE231 - Lecture Notes 5 Mar 14, 2017 Nomnal scale: These are categorcal values that has no relatonshp of order or

More information

Some material adapted from Mohamed Younis, UMBC CMSC 611 Spr 2003 course slides Some material adapted from Hennessy & Patterson / 2003 Elsevier

Some material adapted from Mohamed Younis, UMBC CMSC 611 Spr 2003 course slides Some material adapted from Hennessy & Patterson / 2003 Elsevier Some materal adapted from Mohamed Youns, UMBC CMSC 611 Spr 2003 course sldes Some materal adapted from Hennessy & Patterson / 2003 Elsever Scence Performance = 1 Executon tme Speedup = Performance (B)

More information

Scheduling Remote Access to Scientific Instruments in Cyberinfrastructure for Education and Research

Scheduling Remote Access to Scientific Instruments in Cyberinfrastructure for Education and Research Schedulng Remote Access to Scentfc Instruments n Cybernfrastructure for Educaton and Research Je Yn 1, Junwe Cao 2,3,*, Yuexuan Wang 4, Lanchen Lu 1,3 and Cheng Wu 1,3 1 Natonal CIMS Engneerng and Research

More information

Optimal Workload-based Weighted Wavelet Synopses

Optimal Workload-based Weighted Wavelet Synopses Optmal Workload-based Weghted Wavelet Synopses Yoss Matas School of Computer Scence Tel Avv Unversty Tel Avv 69978, Israel matas@tau.ac.l Danel Urel School of Computer Scence Tel Avv Unversty Tel Avv 69978,

More information

MULTISPECTRAL IMAGES CLASSIFICATION BASED ON KLT AND ATR AUTOMATIC TARGET RECOGNITION

MULTISPECTRAL IMAGES CLASSIFICATION BASED ON KLT AND ATR AUTOMATIC TARGET RECOGNITION MULTISPECTRAL IMAGES CLASSIFICATION BASED ON KLT AND ATR AUTOMATIC TARGET RECOGNITION Paulo Quntlano 1 & Antono Santa-Rosa 1 Federal Polce Department, Brasla, Brazl. E-mals: quntlano.pqs@dpf.gov.br and

More information

Adaptive Virtual Support Vector Machine for the Reliability Analysis of High-Dimensional Problems

Adaptive Virtual Support Vector Machine for the Reliability Analysis of High-Dimensional Problems Proceedngs of the ASME 2 Internatonal Desgn Engneerng Techncal Conferences & Computers and Informaton n Engneerng Conference IDETC/CIE 2 August 29-3, 2, Washngton, D.C., USA DETC2-47538 Adaptve Vrtual

More information

Learning the Kernel Parameters in Kernel Minimum Distance Classifier

Learning the Kernel Parameters in Kernel Minimum Distance Classifier Learnng the Kernel Parameters n Kernel Mnmum Dstance Classfer Daoqang Zhang 1,, Songcan Chen and Zh-Hua Zhou 1* 1 Natonal Laboratory for Novel Software Technology Nanjng Unversty, Nanjng 193, Chna Department

More information

Intra-Parametric Analysis of a Fuzzy MOLP

Intra-Parametric Analysis of a Fuzzy MOLP Intra-Parametrc Analyss of a Fuzzy MOLP a MIAO-LING WANG a Department of Industral Engneerng and Management a Mnghsn Insttute of Technology and Hsnchu Tawan, ROC b HSIAO-FAN WANG b Insttute of Industral

More information

Chapter 6 Programmng the fnte element method Inow turn to the man subject of ths book: The mplementaton of the fnte element algorthm n computer programs. In order to make my dscusson as straghtforward

More information

Related-Mode Attacks on CTR Encryption Mode

Related-Mode Attacks on CTR Encryption Mode Internatonal Journal of Network Securty, Vol.4, No.3, PP.282 287, May 2007 282 Related-Mode Attacks on CTR Encrypton Mode Dayn Wang, Dongda Ln, and Wenlng Wu (Correspondng author: Dayn Wang) Key Laboratory

More information

Sum of Linear and Fractional Multiobjective Programming Problem under Fuzzy Rules Constraints

Sum of Linear and Fractional Multiobjective Programming Problem under Fuzzy Rules Constraints Australan Journal of Basc and Appled Scences, 2(4): 1204-1208, 2008 ISSN 1991-8178 Sum of Lnear and Fractonal Multobjectve Programmng Problem under Fuzzy Rules Constrants 1 2 Sanjay Jan and Kalash Lachhwan

More information

Virtual Machine Migration based on Trust Measurement of Computer Node

Virtual Machine Migration based on Trust Measurement of Computer Node Appled Mechancs and Materals Onlne: 2014-04-04 ISSN: 1662-7482, Vols. 536-537, pp 678-682 do:10.4028/www.scentfc.net/amm.536-537.678 2014 Trans Tech Publcatons, Swtzerland Vrtual Machne Mgraton based on

More information

Wishing you all a Total Quality New Year!

Wishing you all a Total Quality New Year! Total Qualty Management and Sx Sgma Post Graduate Program 214-15 Sesson 4 Vnay Kumar Kalakband Assstant Professor Operatons & Systems Area 1 Wshng you all a Total Qualty New Year! Hope you acheve Sx sgma

More information

FEATURE EXTRACTION. Dr. K.Vijayarekha. Associate Dean School of Electrical and Electronics Engineering SASTRA University, Thanjavur

FEATURE EXTRACTION. Dr. K.Vijayarekha. Associate Dean School of Electrical and Electronics Engineering SASTRA University, Thanjavur FEATURE EXTRACTION Dr. K.Vjayarekha Assocate Dean School of Electrcal and Electroncs Engneerng SASTRA Unversty, Thanjavur613 41 Jont Intatve of IITs and IISc Funded by MHRD Page 1 of 8 Table of Contents

More information

Solitary and Traveling Wave Solutions to a Model. of Long Range Diffusion Involving Flux with. Stability Analysis

Solitary and Traveling Wave Solutions to a Model. of Long Range Diffusion Involving Flux with. Stability Analysis Internatonal Mathematcal Forum, Vol. 6,, no. 7, 8 Soltary and Travelng Wave Solutons to a Model of Long Range ffuson Involvng Flux wth Stablty Analyss Manar A. Al-Qudah Math epartment, Rabgh Faculty of

More information

Cubic Spline Interpolation for. Petroleum Engineering Data

Cubic Spline Interpolation for. Petroleum Engineering Data Appled Mathematcal Scences, Vol. 8, 014, no. 10, 5083-5098 HIKARI Ltd, www.m-hkar.com http://dx.do.org/10.1988/ams.014.4484 Cubc Splne Interpolaton for Petroleum Engneerng Data * Samsul Arffn Abdul Karm

More information

Skew Angle Estimation and Correction of Hand Written, Textual and Large areas of Non-Textual Document Images: A Novel Approach

Skew Angle Estimation and Correction of Hand Written, Textual and Large areas of Non-Textual Document Images: A Novel Approach Angle Estmaton and Correcton of Hand Wrtten, Textual and Large areas of Non-Textual Document Images: A Novel Approach D.R.Ramesh Babu Pyush M Kumat Mahesh D Dhannawat PES Insttute of Technology Research

More information

Implementation Naïve Bayes Algorithm for Student Classification Based on Graduation Status

Implementation Naïve Bayes Algorithm for Student Classification Based on Graduation Status Internatonal Journal of Appled Busness and Informaton Systems ISSN: 2597-8993 Vol 1, No 2, September 2017, pp. 6-12 6 Implementaton Naïve Bayes Algorthm for Student Classfcaton Based on Graduaton Status

More information

Complex System Reliability Evaluation using Support Vector Machine for Incomplete Data-set

Complex System Reliability Evaluation using Support Vector Machine for Incomplete Data-set Internatonal Journal of Performablty Engneerng, Vol. 7, No. 1, January 2010, pp.32-42. RAMS Consultants Prnted n Inda Complex System Relablty Evaluaton usng Support Vector Machne for Incomplete Data-set

More information

Analysis of Malaysian Wind Direction Data Using ORIANA

Analysis of Malaysian Wind Direction Data Using ORIANA Modern Appled Scence March, 29 Analyss of Malaysan Wnd Drecton Data Usng ORIANA St Fatmah Hassan (Correspondng author) Centre for Foundaton Studes n Scence Unversty of Malaya, 63 Kuala Lumpur, Malaysa

More information

Exercises (Part 4) Introduction to R UCLA/CCPR. John Fox, February 2005

Exercises (Part 4) Introduction to R UCLA/CCPR. John Fox, February 2005 Exercses (Part 4) Introducton to R UCLA/CCPR John Fox, February 2005 1. A challengng problem: Iterated weghted least squares (IWLS) s a standard method of fttng generalzed lnear models to data. As descrbed

More information

Module Management Tool in Software Development Organizations

Module Management Tool in Software Development Organizations Journal of Computer Scence (5): 8-, 7 ISSN 59-66 7 Scence Publcatons Management Tool n Software Development Organzatons Ahmad A. Al-Rababah and Mohammad A. Al-Rababah Faculty of IT, Al-Ahlyyah Amman Unversty,

More information

Review of approximation techniques

Review of approximation techniques CHAPTER 2 Revew of appromaton technques 2. Introducton Optmzaton problems n engneerng desgn are characterzed by the followng assocated features: the objectve functon and constrants are mplct functons evaluated

More information

Analysis of Collaborative Distributed Admission Control in x Networks

Analysis of Collaborative Distributed Admission Control in x Networks 1 Analyss of Collaboratve Dstrbuted Admsson Control n 82.11x Networks Thnh Nguyen, Member, IEEE, Ken Nguyen, Member, IEEE, Lnha He, Member, IEEE, Abstract Wth the recent surge of wreless home networks,

More information

3D vector computer graphics

3D vector computer graphics 3D vector computer graphcs Paolo Varagnolo: freelance engneer Padova Aprl 2016 Prvate Practce ----------------------------------- 1. Introducton Vector 3D model representaton n computer graphcs requres

More information

Cell Count Method on a Network with SANET

Cell Count Method on a Network with SANET CSIS Dscusson Paper No.59 Cell Count Method on a Network wth SANET Atsuyuk Okabe* and Shno Shode** Center for Spatal Informaton Scence, Unversty of Tokyo 7-3-1, Hongo, Bunkyo-ku, Tokyo 113-8656, Japan

More information

Radial Basis Functions

Radial Basis Functions Radal Bass Functons Mesh Reconstructon Input: pont cloud Output: water-tght manfold mesh Explct Connectvty estmaton Implct Sgned dstance functon estmaton Image from: Reconstructon and Representaton of

More information

A Robust Method for Estimating the Fundamental Matrix

A Robust Method for Estimating the Fundamental Matrix Proc. VIIth Dgtal Image Computng: Technques and Applcatons, Sun C., Talbot H., Ourseln S. and Adraansen T. (Eds.), 0- Dec. 003, Sydney A Robust Method for Estmatng the Fundamental Matrx C.L. Feng and Y.S.

More information

Floating-Point Division Algorithms for an x86 Microprocessor with a Rectangular Multiplier

Floating-Point Division Algorithms for an x86 Microprocessor with a Rectangular Multiplier Floatng-Pont Dvson Algorthms for an x86 Mcroprocessor wth a Rectangular Multpler Mchael J. Schulte Dmtr Tan Carl E. Lemonds Unversty of Wsconsn Advanced Mcro Devces Advanced Mcro Devces Schulte@engr.wsc.edu

More information

Synthesizer 1.0. User s Guide. A Varying Coefficient Meta. nalytic Tool. Z. Krizan Employing Microsoft Excel 2007

Synthesizer 1.0. User s Guide. A Varying Coefficient Meta. nalytic Tool. Z. Krizan Employing Microsoft Excel 2007 Syntheszer 1.0 A Varyng Coeffcent Meta Meta-Analytc nalytc Tool Employng Mcrosoft Excel 007.38.17.5 User s Gude Z. Krzan 009 Table of Contents 1. Introducton and Acknowledgments 3. Operatonal Functons

More information

Module 6: FEM for Plates and Shells Lecture 6: Finite Element Analysis of Shell

Module 6: FEM for Plates and Shells Lecture 6: Finite Element Analysis of Shell Module 6: FEM for Plates and Shells Lecture 6: Fnte Element Analyss of Shell 3 6.6. Introducton A shell s a curved surface, whch by vrtue of ther shape can wthstand both membrane and bendng forces. A shell

More information

Load-Balanced Anycast Routing

Load-Balanced Anycast Routing Load-Balanced Anycast Routng Chng-Yu Ln, Jung-Hua Lo, and Sy-Yen Kuo Department of Electrcal Engneerng atonal Tawan Unversty, Tape, Tawan sykuo@cc.ee.ntu.edu.tw Abstract For fault-tolerance and load-balance

More information

A Simple and Efficient Goal Programming Model for Computing of Fuzzy Linear Regression Parameters with Considering Outliers

A Simple and Efficient Goal Programming Model for Computing of Fuzzy Linear Regression Parameters with Considering Outliers 62626262621 Journal of Uncertan Systems Vol.5, No.1, pp.62-71, 211 Onlne at: www.us.org.u A Smple and Effcent Goal Programmng Model for Computng of Fuzzy Lnear Regresson Parameters wth Consderng Outlers

More information

Monte Carlo Rendering

Monte Carlo Rendering Monte Carlo Renderng Last Tme? Modern Graphcs Hardware Cg Programmng Language Gouraud Shadng vs. Phong Normal Interpolaton Bump, Dsplacement, & Envronment Mappng Cg Examples G P R T F P D Today Does Ray

More information

SENSITIVITY ANALYSIS IN LINEAR PROGRAMMING USING A CALCULATOR

SENSITIVITY ANALYSIS IN LINEAR PROGRAMMING USING A CALCULATOR SENSITIVITY ANALYSIS IN LINEAR PROGRAMMING USING A CALCULATOR Judth Aronow Rchard Jarvnen Independent Consultant Dept of Math/Stat 559 Frost Wnona State Unversty Beaumont, TX 7776 Wnona, MN 55987 aronowju@hal.lamar.edu

More information

Data Representation in Digital Design, a Single Conversion Equation and a Formal Languages Approach

Data Representation in Digital Design, a Single Conversion Equation and a Formal Languages Approach Data Representaton n Dgtal Desgn, a Sngle Converson Equaton and a Formal Languages Approach Hassan Farhat Unversty of Nebraska at Omaha Abstract- In the study of data representaton n dgtal desgn and computer

More information

The Shortest Path of Touring Lines given in the Plane

The Shortest Path of Touring Lines given in the Plane Send Orders for Reprnts to reprnts@benthamscence.ae 262 The Open Cybernetcs & Systemcs Journal, 2015, 9, 262-267 The Shortest Path of Tourng Lnes gven n the Plane Open Access Ljuan Wang 1,2, Dandan He

More information

Feature Reduction and Selection

Feature Reduction and Selection Feature Reducton and Selecton Dr. Shuang LIANG School of Software Engneerng TongJ Unversty Fall, 2012 Today s Topcs Introducton Problems of Dmensonalty Feature Reducton Statstc methods Prncpal Components

More information

Complex Filtering and Integration via Sampling

Complex Filtering and Integration via Sampling Overvew Complex Flterng and Integraton va Samplng Sgnal processng Sample then flter (remove alases) then resample onunform samplng: jtterng and Posson dsk Statstcs Monte Carlo ntegraton and probablty theory

More information

Hermite Splines in Lie Groups as Products of Geodesics

Hermite Splines in Lie Groups as Products of Geodesics Hermte Splnes n Le Groups as Products of Geodescs Ethan Eade Updated May 28, 2017 1 Introducton 1.1 Goal Ths document defnes a curve n the Le group G parametrzed by tme and by structural parameters n the

More information

A Unified Framework for Semantics and Feature Based Relevance Feedback in Image Retrieval Systems

A Unified Framework for Semantics and Feature Based Relevance Feedback in Image Retrieval Systems A Unfed Framework for Semantcs and Feature Based Relevance Feedback n Image Retreval Systems Ye Lu *, Chunhu Hu 2, Xngquan Zhu 3*, HongJang Zhang 2, Qang Yang * School of Computng Scence Smon Fraser Unversty

More information

Algorithm To Convert A Decimal To A Fraction

Algorithm To Convert A Decimal To A Fraction Algorthm To Convert A ecmal To A Fracton by John Kennedy Mathematcs epartment Santa Monca College 1900 Pco Blvd. Santa Monca, CA 90405 jrkennedy6@gmal.com Except for ths comment explanng that t s blank

More information

Machine Learning: Algorithms and Applications

Machine Learning: Algorithms and Applications 14/05/1 Machne Learnng: Algorthms and Applcatons Florano Zn Free Unversty of Bozen-Bolzano Faculty of Computer Scence Academc Year 011-01 Lecture 10: 14 May 01 Unsupervsed Learnng cont Sldes courtesy of

More information

SURFACE PROFILE EVALUATION BY FRACTAL DIMENSION AND STATISTIC TOOLS USING MATLAB

SURFACE PROFILE EVALUATION BY FRACTAL DIMENSION AND STATISTIC TOOLS USING MATLAB SURFACE PROFILE EVALUATION BY FRACTAL DIMENSION AND STATISTIC TOOLS USING MATLAB V. Hotař, A. Hotař Techncal Unversty of Lberec, Department of Glass Producng Machnes and Robotcs, Department of Materal

More information

TN348: Openlab Module - Colocalization

TN348: Openlab Module - Colocalization TN348: Openlab Module - Colocalzaton Topc The Colocalzaton module provdes the faclty to vsualze and quantfy colocalzaton between pars of mages. The Colocalzaton wndow contans a prevew of the two mages

More information

REFRACTIVE INDEX SELECTION FOR POWDER MIXTURES

REFRACTIVE INDEX SELECTION FOR POWDER MIXTURES REFRACTIVE INDEX SELECTION FOR POWDER MIXTURES Laser dffracton s one of the most wdely used methods for partcle sze analyss of mcron and submcron sze powders and dspersons. It s quck and easy and provdes

More information

S.P.H. : A SOLUTION TO AVOID USING EROSION CRITERION?

S.P.H. : A SOLUTION TO AVOID USING EROSION CRITERION? S.P.H. : A SOLUTION TO AVOID USING EROSION CRITERION? Célne GALLET ENSICA 1 place Emle Bloun 31056 TOULOUSE CEDEX e-mal :cgallet@ensca.fr Jean Luc LACOME DYNALIS Immeuble AEROPOLE - Bat 1 5, Avenue Albert

More information