Software for analysis of visual meteor data

Size: px
Start display at page:

Download "Software for analysis of visual meteor data"

From this document you will learn the answers to the following questions:

  • What do Functons do some calculatons over data?

  • What does shw select?

  • What type of data is used to calculate the rate or magntude data?

Transcription

1 Proceedngs of the IMC, Gron, Software for analyss of vsual meteor data Krstna Veljkovć, Ilja Ivanovć Petnca Meteor Group, Valjevo, Serba mackkac@gmal.com, lja91vanovc@gmal.com In ths paper, we wll present new software for analyss of IMO data collected from vsual observatons. The software conssts of a package of functons wrtten n the statstcal programmng language R, as well as Java applcaton whch uses these functons n a user frendly envronment. R code contans varous flters for selecton of data, methods for calculaton of Zenthal Hourly Rate (ZHR), solar longtude, populaton ndex and graphcal representaton of ZHR and dstrbuton of observed magntudes. Java applcaton allows everyone to use these functons wthout any knowledge of R. Both R code and Java applcaton are open source and free wth provded user manuals and examples. 1 Introducton Ths paper presents results of software development for analyss of IMO vsual meteor data. The software conssts of a package of functons wrtten n the statstcal programmng language R, as well as Java applcaton. The purpose of R functons s to provde basc analyss, and Java applcaton s developed wth the am to make use of ths functons n a user frendly envronment. The R package MetFns contans data frames wth vsual meteor data (rate or magntude data), as well as varous flters for the selecton of the data, methods for calculaton of Zenthal Hourly Rate (ZHR), solar longtude, populaton ndex and a graphcal representaton of the ZHRs and the observed magntude dstrbutons. The developed Java applcaton allows users to call R functons wthout any knowledge about the R programmng language. Although ts purpose s to be proxy for these functons, the applcaton contans a few extra features whch can be useful to users. The applcaton uses a standard graphcal nterface, and t contans help fles from the R package. All software s open source and free, wth manuals and examples provded for both software packages. The rest of the paper s organzed as follows. In Secton 2, we provde detals about the nstallaton of package MetFns and the applcaton MetRApp. The descrpton of the R package and the Java applcaton s gven n Sectons 3 and 4, respectvely. Fnally, conclusons are drawn n Secton 5. 2 Installaton In order to nstall the R MetFns package, follow the next steps: 1. (f not already nstalled) download and nstall the latest verson of R 1 2. Download the packages astrofns 2 and plotrx 3 3. Download the package MetFns 4 In order to nstall the MetRApp applcaton: 1. (f not already nstalled) download and nstall latest JRE 5 2. Download and nstall the Runversal package from CRAN 6 3. Download the applcaton 7 Please note: In our software we use many dependences developed by thrd party organzatons. We are not responsble for that content. Also, please note that as new versons of those dependences are developed, and you use them, they may not be compatble wth our software. We wll try to keep up wth new versons of these dependences, but f you encounter dffcultes, please contact us. 3 R package The R package MetFns conssts of data frames contanng vsual meteor data and functons whch manpulate these data. Data frames can be dvded nto three sectons, by ther type: a. Yearly rate data named ratexx, where XX represents the two last dgts of the year 1 cran.r-project.org 2 cran.r-project.org/web/packages/astrofns/ 3 cran.r-project.org/web/packages/plotrx 4 cran.r-project.org/web/packages/metfns/ 5 x.html?sssourcesteid=ocomen (alternatvely t may be hosted on

2 2 Proceedngs of the IMC, Gron, 2014 b. Yearly magntude data named magnxx c. Accompanyng data ncludes data frames radant wth coordnates of shower radants throughout the year, shw_lst, vmdbpers and vmdbste wth a lst of observed meteor showers, observers and observng stes, respectvely. Functons that manpulate vsual meteor data can be dvded nto four types: Functons that read rate or magntude data from the IMO ste or fle saved on a computer, named read.rate(data) and read.magn (data) Functons that select (flter) data by one or more crtera Functons that perform some calculatons over data Functons that draw graphcs wth the data Next, we wll cover the last three types of functons n more detal. Flter functons The Package MetFns contans 13 ndvdual flter functons and a global flter. Some flters can be used only on rate data and t wll be specfed n the descrpton of the flter. In the followng examples, we suppose that all rate and magntude data are prevously loaded (usng data functon, for example data (rate00)) flter.shw (data, shw) selects data for a gven vsual meteor dataset and specfed shower code. For example, f we want to select data for the Perseds from the rate data for the year 2000, we would call the functon flter.shw n the followng way flter.shw (rate00, shw="per") If we wsh to do the same selecton for the magntude data, we would type n the R console flter.shw (magn00, shw="per") flter.date (data, year, month, day.beg, day.end=day.beg) selects data for a gven vsual meteor dataset and specfed year, month and day (or days). By default, the argument day.end (endng day) s set to be equal to day.beg (begnnng day). So, f the argument day.end s not provded, the functon flter.date selects data for a gven date, otherwse t selects data for a perod of days, lmted by day.beg and day.end. The day gven n meteor datasets corresponds to the begnnng of the observng tme perod. For the selecton of the data, the day correspondng to the mddle of the observng tme perod s used. For example, to select rate data for the perod from 5 15 August 2007, we would type flter.date (rate07, year=2007, month=8, day.beg=5, day.end=15) In a smlar way, we would select the magntude data. flter.tme (data, tme.low, tme.up) selects data for a gven vsual meteor dataset and specfed tme perod. Arguments tme.low and tme.up are n the format specfyng, the lower and upper boundary of tme n hours and mnutes, respectvely. flter.mocode (data, mocode) selects data for a gven vsual meteor dataset and specfed IMO observer code. flter.obsname (data, name, name) selects data for a gven vsual meteor dataset and specfed observer's frst and last name. It can be used when one s not certan of the IMO observer code (due to possble non-unqueness of the fve letter combnaton). flter.gc (data, long.low=0, long.up=180, ew=c ("E","W"), lat.low=0, lat.up=90, ns=c ("N","S")) selects data for a gven vsual meteor dataset and specfed geographcal coordnates of the observng ste or nterval of geographcal coordnates. The arguments long.low and long.up represent, respectvely, the lower and upper boundary of longtude and lat.low and lat.up are, respectvely, the lower and upper boundary of lattude. If the values of the arguments long.low and long.up, as well as lat.low and lat.up, are the same, flter.gc selects data for a partcular observng ste. Ths flter enables one to select data only by longtude or lattude, wth the geographcal coordnates beng between gven boundares, less, greater or equal to a boundary. For example, f we wsh to select magntude data for the year 2004 for a ste wth longtude 19.7E and lattude 44.2N, we would type nto the R console. flter.gc (magn04, long.low=19.7, long.up =19.7, ew="e", lat.low=44.2, lat.up=44.2, ns="n") flter.ste (data, ste) selects data for a gven vsual meteor dataset and specfed observng ste. In order to use ths flter, the argument data has to consst of the column named "stecode". flter.country (data, country) selects data for a gven vsual meteor dataset and specfed country. The data selecton s performed usng flter.ste whch flters data by codes of all stes belongng to the specfed country. As for the functon flter.ste, data has to consst of the column named "stecode". flter.sol (data, sol.low=0, sol.up= ) selects data for a gven vsual meteor dataset and specfed solar longtude or nterval of solar longtudes. flter.f (data, F.low=1, F.up=3) selects data for a gven vsual meteor rate dataset and specfed correcton factor

3 Proceedngs of the IMC, Gron, or nterval of correcton factor for clouds. Arguments F.low and F.up represent, respectvely, the lower and the upper boundary for the correcton for clouds. flter.mag (data, mag.low=2.0, mag.up=7.5) selects data for a gven vsual meteor dataset and specfed lmtng magntude or nterval of magntudes. The arguments mag.low and mag.up are, respectvely, the lower and the upper boundary of the lmtng magntude. flter.h (data, shw, Ralpha=NULL, Delta=NULL, h.low=10, h.up=90) selects data for a gven vsual meteor dataset, specfed shower and ts radant elevaton or nterval of radant elevatons. The arguments h.low and h.up specfy, respectvely, the lower and the upper boundary of the radant elevaton. flter.totcor (data, shw, Ralpha=NULL, Delta=NULL, r, C=5) selects data for a gven vsual meteor rate dataset, specfed shower, populaton ndex and correcton factor. The correcton factor s equal to (Rendtel and Arlt, 2008) 6.5lmg r F C sn( h) where r s the populaton ndex, lmg the lmtng magntude, F the correcton factor for clouds and h the radant elevaton. One needs to specfy the maxmum value of the correcton factor C (default value of C s 5). The functon flter performs varous data selectons for a gven vsual meteor data. It s a wrapper functon for all prevously mentoned flters. For example, f we want to select rate data for observatons of the Perseds n Serba, tme perod 5 15 th August 2007, lmtng magntudes of 5.5 or hgher and a total correcton factor less than 5, we would use flter (rate07, shw="per", year=2007, month=8, day.beg=5, day.end=15, country= "Serba", mag.low =5.5, r=2.2) Calculaton functons In our R package, we have three functons that perform dfferent calculatons on vsual meteor data. solar.long (year, month, day, tme) calculates the solar longtude wth respect to the equnox of (Steyeart, 1991) for a gven year, month, day and tme n hours. zhr (data,year, month, day.beg, day.end, shw, r=null, Ralpha=NULL, Delta=NULL, k, c=1) calculates the average zenthal hourly rate (ZHR) of a meteor shower for a gven rate data, specfed shower, perod of days, populaton ndex, length of tme nterval and ZHR correcton. The average zenthal hourly rate s gven by the formula 1 k c n 1 ZHR k T eff, where k s the number of observng perods, n - the number of meteors seen durng the observng perod, T - the effectve tme or amount of tme an observer eff, actually scans the sky for meteors durng the observng perod, and C a correcton factor. In the numerator, c s ncluded to correct for the asymmetrc hgh and low end possbltes n a Posson dstrbuton (Bas, 2011.). By default, t s set to 1. The standard error of the average zenthal rate s calculated by the formula ZHR c C k n 1 The spatal number densty of meteorods producng meteors of magntude at least 6.5 s (per 10 9 km 3 ) (Koschack and Rendtel, 1990a) (10.65r 12.15) ZHR r V where V s the stream's geocentrc velocty. The standard error of the spatal number densty s approxmated wth ZHR Day s dvded n subntervals of k hours. For example, f k=12, subntervals are [ 0,12) and [ 12,24). Zenthal hourly rate s calculated for each subnterval n the followng manner: If mddle of observer's tme perod belongs to the subnterval, hs/hers data values are used n calculaton of ZHR. For example, f we want to select vsual meteor data for observaton of Oronds, perod 20-24th October 2006, 12 hours tme ntervals, and calculate ZHR rateor <- flter (rate06, shw="ori", year =2006, month=10, day.beg=20, day.end=24) zhr (rateor, year=2006, month=10, day.beg =20, day.end=24, shw="ori", r=2.5, k=12)

4 4 Proceedngs of the IMC, Gron, 2014 pop.ndex (data, year, month, day.beg, day.end=day.beg, shw, mag=-6:7) calculates populaton ndex of a meteor shower for a gven magntude data, specfed perod of days and magntude values. Cumulatve summarzed magntude dstrbuton (m) s formed by summng cumulatve frequences of all observers for each magntude class m. Usng the relatonshp 1,...,m magntudes, equaton ( m 1) r and substtutng 0, ( m) ) m ( m) (0 r (or ln ( m) ln (0) mln r n logarthmc form) can be wrtten. Then, populaton ndex r s calculated by the method of least squares, for chosen range of magntude values. Standard error of populaton ndex s approxmated wth r r n 2 e 1 n ( n 2) 1 where n s number of magntude values, resduals, =1,2,,n. m 2 e regresson The nterval for regresson s chosen such that: there s at least 3 meteors per magntude class, the fantest magntude classes are not ncluded ( m 4 or n exceptonal cases m 5) and there are at least 5 magntude classes avalable (Koschack and Rendtel, 1990b). All these condtons are fulflled for the range of magntude values prnted n results. To select magntude data for observaton of Perseds, tme perod 1-20th August 2007 and calculate populaton ndex usng magntudes -6 to +4, we would type magnper <-flter (magn07, shw="per", year=2007, month=8, day.beg=1, day.end=20) pop.ndex (magnper, year=2007, month=8, day.beg=1, day.end=20, shw="per", mag=-6:4) Drawng graphs functons We have two functons of ths type. mag.dstr (data, year, month, day.beg, day.end=day.beg, shw) graphcally represents magntude dstrbuton for a gven magntude dataset, specfed meteor shower and perod of days. It returns a plot of summarzed magntude dstrbuton consstng of hstogram and box-plot. For example, to select data for observatons of Perseds, perod 12-14th August 2007 and make a graphc of magntude dstrbuton, we would type nto R console magnper <-flter (magn07, shw="per", year =2007, month=8, day.beg=12, day.end=14) popi.dstrb (magnper, year=2007, month=8, day.beg=12, day.end=14, shw="per") zhr.graph (data, year, month, day. beg, day.end=day.beg, shw, r=null, Ralpha=NULL, Delta=NULL, k, c=1, type=c ("UTC", "sol")) represents graphcally the average zenthal hourly rate of a meteor shower wth error bars for a gven rate dataset, specfed shower, perod of days, populaton ndex, length of tme nterval, ZHR correcton and a type of x-axs dsplay. For type="utc", the tck marks on the x-axs represent coordnated unversal tme (UTC), set k dstance apart, wth labels specfyng date (at 00:00 UTC). For type="sol", the tck marks and the labels on the x-axs represent the solar longtude, correspondng to the above mentoned tme n UTC. Functon zhr.graph returns the xy plot of the Zenthal Hourly Rate, wth tme (UTC) or solar longtude on the x-axs and the ZHR on the y-axs. The ZHR s represented wth black flled crcles wth 68% confdence ntervals/one sgma error bars. For example, to select data for observatons of the Oronds, perod th October 2006, 6hrs tme ntervals, and to generate a ZHR graph we would type: rateor <-flter (rate06, shw="ori", year =2006, month=10, day.beg=20, day.end=26) zhr.graph (rateor, year=2006, month=10, day.beg=20, day.end=26, shw="ori", r=2.5, k=6, type="utc") 4 MetRApp Java Applcaton The motvaton for ths applcaton ams to provde a smple user nterface to the R package and to allow all users to use ts functons wthout any necessary knowledge of R. Currently, t s developed only as a desktop applcaton, but wth potental to be moved to the web. User experence Ths applcaton uses a standard graphcal user nterface to communcate wth users. The setup needed for runtme s only to provde the paths for the nstallaton of R and other

5 Proceedngs of the IMC, Gron, resources needed to run the applcaton (datasets, tables etc.). Software archtecture of MetRApp Ths applcaton s developed usng standard three ter archtecture. All compled versons and the applcaton are avalable at the lnk gven n secton 2 and t can be ndependently developed by other organzatons. The applcaton s developed usng Java 7 and Netbeans IDE. The verson control software s gt and the repostory host s Btbucket. A short descrpton of the software archtecture of ths applcaton s provded too, as a startng pont for any potental efforts. Data ter MetRApp does not mantan any data n the databases snce ts functon s to be a proxy between the R package and the users. However, snce the results of the executon of the R code are contaned n R data structures, approprate doman classes have to be mplemented n MetRApp. In ths case, a doman class for the R data frame has to be mplemented. Three Java classes are mplemented to provde an approprate representaton of data from the R data frame abstract class DataFrame, and two classes whch extend the prevous one StrngDataFrame and DataFrameFromCSV. More detals about doman classes are provded n the documentaton on the project s repostory. In addton to these doman classes, more of them had to be mplemented for the IMO data. These new classes are a representaton of, for example, persons or stes nstances n the correspondng datasets. Also, the R code whch s used to evaluate data s nserted n the class IntalRCode. Logc ter The logc part of ths system s mplemented n several packages. The frst part contans flters for the selecton of data whch correspond to the prevously explaned R flters. These Java flters had to be mplemented to avod unnecessary parsng of data n the communcaton between MetRApp and MetFns. Ths approach allows very fast flterng of data whch s done n MetRApp only, wthout callng R code. However, only 11 of the 13 flters could be fully mplemented n Java because of the dependency to thrd party functons avalable exclusvely n R for some flters. The archtecture of ths package s very basc there s an abstract class JavaFlter whch s then extended by concrete flters whch mplement the logc of the approprate R flter. Ths abstract class has reference to the current dataset whch s used n the applcaton runtme, and also provdes the abstract method whch accepts HashMap of parameters whch are needed for a concrete flter to be executed. As stated before, MetRApp calls R functons to evaluate data and returns the result to the user. Ths communcaton s acheved usng RCaller 8, a software lbrary for callng R functons wthn Java programs. The dea behnd RCaller s very smple the Java program (n ths case MetRApp) s the caller and t sends requests (contanng R code and data) va XML and accepts responses, agan n XML format. The logc ter of the applcaton also contans a few controllers whch are responsble for dspatchng calls between objects and for provdng an essental backbone for all mplemented functonaltes. The controllers have also references to all data sources and they provde a control on ther correct usage. Presentaton ter As stated before, ths applcaton uses a standard graphcal user nterface platform. It s based on Swng components, wthout any addtonal customzaton (and dependences). The structure of the presentaton ter s not very well optmzed, snce new efforts were made to move ths applcaton to the web. Future mprovements A very large part of the applcaton s mplemented usng software patterns whch provde a large flexblty and very much smplfy the mplementaton of new functonaltes. Sx software patterns were mplemented n the applcaton, but not all of them are currently used. Requests for new functonaltes are welcome, as well as revews of the current verson of the software. Our group wll contnue to develop ths software, but also support new ntatves by branchng ths code base. 5 Concluson The developed software covers a vast majorty of use cases 9 specfed by our meteor observaton group. Due to ts modular archtecture, t s possble to expand the applcaton specfcaton and to provde addtonal features f needed. All resources ncludng source code, test examples, documentaton and other fles are provded at publc repostores, and everyone can develop ther specfc dstrbuton of ths software. We hope that other IMO observers wll fnd our software useful. However, f new features are requested, we shall try to mplement them n new releases of our software. Acknowledgment We would lke to thank Branslav Savć whose suggestons and comments were nvaluable n developng our software

6 6 Proceedngs of the IMC, Gron, 2014 References Bas P. V. (2011). A Note on Posson nference and extrapolatons under low raw data and short nterval observaton condtons. WGN, Journal of the IMO, 39, Koschack R. and Rendtel J. (1990a). Determnaton of spatal number densty and mass ndex from vsual meteor observatons (I). WGN, Journal of the IMO, 18, Koschack R. and Rendtel J. (1990b). Determnaton of spatal number densty and mass ndex from vsual meteor observatons (II). WGN, Journal of the IMO, 18, Rendtel J. and Arlt R., edtors (2008). IMO Handbook For Meteor Observers. IMO, Potsdam. Steyaert C. (1991). Calculatng the Solar Longtude WGN, Journal of the IMO, 19,

benefit is 2, paid if the policyholder dies within the year, and probability of death within the year is ).

benefit is 2, paid if the policyholder dies within the year, and probability of death within the year is ). REVIEW OF RISK MANAGEMENT CONCEPTS LOSS DISTRIBUTIONS AND INSURANCE Loss and nsurance: When someone s subject to the rsk of ncurrng a fnancal loss, the loss s generally modeled usng a random varable or

More information

CHOLESTEROL REFERENCE METHOD LABORATORY NETWORK. Sample Stability Protocol

CHOLESTEROL REFERENCE METHOD LABORATORY NETWORK. Sample Stability Protocol CHOLESTEROL REFERENCE METHOD LABORATORY NETWORK Sample Stablty Protocol Background The Cholesterol Reference Method Laboratory Network (CRMLN) developed certfcaton protocols for total cholesterol, HDL

More information

VRT012 User s guide V0.1. Address: Žirmūnų g. 27, Vilnius LT-09105, Phone: (370-5) 2127472, Fax: (370-5) 276 1380, Email: info@teltonika.

VRT012 User s guide V0.1. Address: Žirmūnų g. 27, Vilnius LT-09105, Phone: (370-5) 2127472, Fax: (370-5) 276 1380, Email: info@teltonika. VRT012 User s gude V0.1 Thank you for purchasng our product. We hope ths user-frendly devce wll be helpful n realsng your deas and brngng comfort to your lfe. Please take few mnutes to read ths manual

More information

The Development of Web Log Mining Based on Improve-K-Means Clustering Analysis

The Development of Web Log Mining Based on Improve-K-Means Clustering Analysis The Development of Web Log Mnng Based on Improve-K-Means Clusterng Analyss TngZhong Wang * College of Informaton Technology, Luoyang Normal Unversty, Luoyang, 471022, Chna wangtngzhong2@sna.cn Abstract.

More information

Recurrence. 1 Definitions and main statements

Recurrence. 1 Definitions and main statements Recurrence 1 Defntons and man statements Let X n, n = 0, 1, 2,... be a MC wth the state space S = (1, 2,...), transton probabltes p j = P {X n+1 = j X n = }, and the transton matrx P = (p j ),j S def.

More information

Can Auto Liability Insurance Purchases Signal Risk Attitude?

Can Auto Liability Insurance Purchases Signal Risk Attitude? Internatonal Journal of Busness and Economcs, 2011, Vol. 10, No. 2, 159-164 Can Auto Lablty Insurance Purchases Sgnal Rsk Atttude? Chu-Shu L Department of Internatonal Busness, Asa Unversty, Tawan Sheng-Chang

More information

Vembu StoreGrid Windows Client Installation Guide

Vembu StoreGrid Windows Client Installation Guide Ser v cepr ov dered t on Cl enti nst al l at ongu de W ndows Vembu StoreGrd Wndows Clent Installaton Gude Download the Wndows nstaller, VembuStoreGrd_4_2_0_SP_Clent_Only.exe To nstall StoreGrd clent on

More information

Calculation of Sampling Weights

Calculation of Sampling Weights Perre Foy Statstcs Canada 4 Calculaton of Samplng Weghts 4.1 OVERVIEW The basc sample desgn used n TIMSS Populatons 1 and 2 was a two-stage stratfed cluster desgn. 1 The frst stage conssted of a sample

More information

DEFINING %COMPLETE IN MICROSOFT PROJECT

DEFINING %COMPLETE IN MICROSOFT PROJECT CelersSystems DEFINING %COMPLETE IN MICROSOFT PROJECT PREPARED BY James E Aksel, PMP, PMI-SP, MVP For Addtonal Informaton about Earned Value Management Systems and reportng, please contact: CelersSystems,

More information

An Alternative Way to Measure Private Equity Performance

An Alternative Way to Measure Private Equity Performance An Alternatve Way to Measure Prvate Equty Performance Peter Todd Parlux Investment Technology LLC Summary Internal Rate of Return (IRR) s probably the most common way to measure the performance of prvate

More information

CHAPTER 14 MORE ABOUT REGRESSION

CHAPTER 14 MORE ABOUT REGRESSION CHAPTER 14 MORE ABOUT REGRESSION We learned n Chapter 5 that often a straght lne descrbes the pattern of a relatonshp between two quanttatve varables. For nstance, n Example 5.1 we explored the relatonshp

More information

On the Optimal Control of a Cascade of Hydro-Electric Power Stations

On the Optimal Control of a Cascade of Hydro-Electric Power Stations On the Optmal Control of a Cascade of Hydro-Electrc Power Statons M.C.M. Guedes a, A.F. Rbero a, G.V. Smrnov b and S. Vlela c a Department of Mathematcs, School of Scences, Unversty of Porto, Portugal;

More information

8 Algorithm for Binary Searching in Trees

8 Algorithm for Binary Searching in Trees 8 Algorthm for Bnary Searchng n Trees In ths secton we present our algorthm for bnary searchng n trees. A crucal observaton employed by the algorthm s that ths problem can be effcently solved when the

More information

1. Fundamentals of probability theory 2. Emergence of communication traffic 3. Stochastic & Markovian Processes (SP & MP)

1. Fundamentals of probability theory 2. Emergence of communication traffic 3. Stochastic & Markovian Processes (SP & MP) 6.3 / -- Communcaton Networks II (Görg) SS20 -- www.comnets.un-bremen.de Communcaton Networks II Contents. Fundamentals of probablty theory 2. Emergence of communcaton traffc 3. Stochastc & Markovan Processes

More information

What is Candidate Sampling

What is Candidate Sampling What s Canddate Samplng Say we have a multclass or mult label problem where each tranng example ( x, T ) conssts of a context x a small (mult)set of target classes T out of a large unverse L of possble

More information

) of the Cell class is created containing information about events associated with the cell. Events are added to the Cell instance

) of the Cell class is created containing information about events associated with the cell. Events are added to the Cell instance Calbraton Method Instances of the Cell class (one nstance for each FMS cell) contan ADC raw data and methods assocated wth each partcular FMS cell. The calbraton method ncludes event selecton (Class Cell

More information

A hybrid global optimization algorithm based on parallel chaos optimization and outlook algorithm

A hybrid global optimization algorithm based on parallel chaos optimization and outlook algorithm Avalable onlne www.ocpr.com Journal of Chemcal and Pharmaceutcal Research, 2014, 6(7):1884-1889 Research Artcle ISSN : 0975-7384 CODEN(USA) : JCPRC5 A hybrd global optmzaton algorthm based on parallel

More information

Implementation of Deutsch's Algorithm Using Mathcad

Implementation of Deutsch's Algorithm Using Mathcad Implementaton of Deutsch's Algorthm Usng Mathcad Frank Roux The followng s a Mathcad mplementaton of Davd Deutsch's quantum computer prototype as presented on pages - n "Machnes, Logc and Quantum Physcs"

More information

Fault tolerance in cloud technologies presented as a service

Fault tolerance in cloud technologies presented as a service Internatonal Scentfc Conference Computer Scence 2015 Pavel Dzhunev, PhD student Fault tolerance n cloud technologes presented as a servce INTRODUCTION Improvements n technques for vrtualzaton and performance

More information

Luby s Alg. for Maximal Independent Sets using Pairwise Independence

Luby s Alg. for Maximal Independent Sets using Pairwise Independence Lecture Notes for Randomzed Algorthms Luby s Alg. for Maxmal Independent Sets usng Parwse Independence Last Updated by Erc Vgoda on February, 006 8. Maxmal Independent Sets For a graph G = (V, E), an ndependent

More information

How To Understand The Results Of The German Meris Cloud And Water Vapour Product

How To Understand The Results Of The German Meris Cloud And Water Vapour Product Ttel: Project: Doc. No.: MERIS level 3 cloud and water vapour products MAPP MAPP-ATBD-ClWVL3 Issue: 1 Revson: 0 Date: 9.12.1998 Functon Name Organsaton Sgnature Date Author: Bennartz FUB Preusker FUB Schüller

More information

THE DISTRIBUTION OF LOAN PORTFOLIO VALUE * Oldrich Alfons Vasicek

THE DISTRIBUTION OF LOAN PORTFOLIO VALUE * Oldrich Alfons Vasicek HE DISRIBUION OF LOAN PORFOLIO VALUE * Oldrch Alfons Vascek he amount of captal necessary to support a portfolo of debt securtes depends on the probablty dstrbuton of the portfolo loss. Consder a portfolo

More information

A Secure Password-Authenticated Key Agreement Using Smart Cards

A Secure Password-Authenticated Key Agreement Using Smart Cards A Secure Password-Authentcated Key Agreement Usng Smart Cards Ka Chan 1, Wen-Chung Kuo 2 and Jn-Chou Cheng 3 1 Department of Computer and Informaton Scence, R.O.C. Mltary Academy, Kaohsung 83059, Tawan,

More information

How To Calculate The Accountng Perod Of Nequalty

How To Calculate The Accountng Perod Of Nequalty Inequalty and The Accountng Perod Quentn Wodon and Shlomo Ytzha World Ban and Hebrew Unversty September Abstract Income nequalty typcally declnes wth the length of tme taen nto account for measurement.

More information

Demographic and Health Surveys Methodology

Demographic and Health Surveys Methodology samplng and household lstng manual Demographc and Health Surveys Methodology Ths document s part of the Demographc and Health Survey s DHS Toolkt of methodology for the MEASURE DHS Phase III project, mplemented

More information

Hollinger Canadian Publishing Holdings Co. ( HCPH ) proceeding under the Companies Creditors Arrangement Act ( CCAA )

Hollinger Canadian Publishing Holdings Co. ( HCPH ) proceeding under the Companies Creditors Arrangement Act ( CCAA ) February 17, 2011 Andrew J. Hatnay ahatnay@kmlaw.ca Dear Sr/Madam: Re: Re: Hollnger Canadan Publshng Holdngs Co. ( HCPH ) proceedng under the Companes Credtors Arrangement Act ( CCAA ) Update on CCAA Proceedngs

More information

An Interest-Oriented Network Evolution Mechanism for Online Communities

An Interest-Oriented Network Evolution Mechanism for Online Communities An Interest-Orented Network Evoluton Mechansm for Onlne Communtes Cahong Sun and Xaopng Yang School of Informaton, Renmn Unversty of Chna, Bejng 100872, P.R. Chna {chsun,yang}@ruc.edu.cn Abstract. Onlne

More information

1 Example 1: Axis-aligned rectangles

1 Example 1: Axis-aligned rectangles COS 511: Theoretcal Machne Learnng Lecturer: Rob Schapre Lecture # 6 Scrbe: Aaron Schld February 21, 2013 Last class, we dscussed an analogue for Occam s Razor for nfnte hypothess spaces that, n conjuncton

More information

Design and Development of a Security Evaluation Platform Based on International Standards

Design and Development of a Security Evaluation Platform Based on International Standards Internatonal Journal of Informatcs Socety, VOL.5, NO.2 (203) 7-80 7 Desgn and Development of a Securty Evaluaton Platform Based on Internatonal Standards Yuj Takahash and Yoshm Teshgawara Graduate School

More information

How Sets of Coherent Probabilities May Serve as Models for Degrees of Incoherence

How Sets of Coherent Probabilities May Serve as Models for Degrees of Incoherence 1 st Internatonal Symposum on Imprecse Probabltes and Ther Applcatons, Ghent, Belgum, 29 June 2 July 1999 How Sets of Coherent Probabltes May Serve as Models for Degrees of Incoherence Mar J. Schervsh

More information

To manage leave, meeting institutional requirements and treating individual staff members fairly and consistently.

To manage leave, meeting institutional requirements and treating individual staff members fairly and consistently. Corporate Polces & Procedures Human Resources - Document CPP216 Leave Management Frst Produced: Current Verson: Past Revsons: Revew Cycle: Apples From: 09/09/09 26/10/12 09/09/09 3 years Immedately Authorsaton:

More information

SIMPLE LINEAR CORRELATION

SIMPLE LINEAR CORRELATION SIMPLE LINEAR CORRELATION Smple lnear correlaton s a measure of the degree to whch two varables vary together, or a measure of the ntensty of the assocaton between two varables. Correlaton often s abused.

More information

Lecture 3: Force of Interest, Real Interest Rate, Annuity

Lecture 3: Force of Interest, Real Interest Rate, Annuity Lecture 3: Force of Interest, Real Interest Rate, Annuty Goals: Study contnuous compoundng and force of nterest Dscuss real nterest rate Learn annuty-mmedate, and ts present value Study annuty-due, and

More information

An Evaluation of the Extended Logistic, Simple Logistic, and Gompertz Models for Forecasting Short Lifecycle Products and Services

An Evaluation of the Extended Logistic, Simple Logistic, and Gompertz Models for Forecasting Short Lifecycle Products and Services An Evaluaton of the Extended Logstc, Smple Logstc, and Gompertz Models for Forecastng Short Lfecycle Products and Servces Charles V. Trappey a,1, Hsn-yng Wu b a Professor (Management Scence), Natonal Chao

More information

Causal, Explanatory Forecasting. Analysis. Regression Analysis. Simple Linear Regression. Which is Independent? Forecasting

Causal, Explanatory Forecasting. Analysis. Regression Analysis. Simple Linear Regression. Which is Independent? Forecasting Causal, Explanatory Forecastng Assumes cause-and-effect relatonshp between system nputs and ts output Forecastng wth Regresson Analyss Rchard S. Barr Inputs System Cause + Effect Relatonshp The job of

More information

The Greedy Method. Introduction. 0/1 Knapsack Problem

The Greedy Method. Introduction. 0/1 Knapsack Problem The Greedy Method Introducton We have completed data structures. We now are gong to look at algorthm desgn methods. Often we are lookng at optmzaton problems whose performance s exponental. For an optmzaton

More information

Frequency Selective IQ Phase and IQ Amplitude Imbalance Adjustments for OFDM Direct Conversion Transmitters

Frequency Selective IQ Phase and IQ Amplitude Imbalance Adjustments for OFDM Direct Conversion Transmitters Frequency Selectve IQ Phase and IQ Ampltude Imbalance Adjustments for OFDM Drect Converson ransmtters Edmund Coersmeer, Ernst Zelnsk Noka, Meesmannstrasse 103, 44807 Bochum, Germany edmund.coersmeer@noka.com,

More information

Forecasting the Direction and Strength of Stock Market Movement

Forecasting the Direction and Strength of Stock Market Movement Forecastng the Drecton and Strength of Stock Market Movement Jngwe Chen Mng Chen Nan Ye cjngwe@stanford.edu mchen5@stanford.edu nanye@stanford.edu Abstract - Stock market s one of the most complcated systems

More information

APPLICATION OF PROBE DATA COLLECTED VIA INFRARED BEACONS TO TRAFFIC MANEGEMENT

APPLICATION OF PROBE DATA COLLECTED VIA INFRARED BEACONS TO TRAFFIC MANEGEMENT APPLICATION OF PROBE DATA COLLECTED VIA INFRARED BEACONS TO TRAFFIC MANEGEMENT Toshhko Oda (1), Kochro Iwaoka (2) (1), (2) Infrastructure Systems Busness Unt, Panasonc System Networks Co., Ltd. Saedo-cho

More information

THE METHOD OF LEAST SQUARES THE METHOD OF LEAST SQUARES

THE METHOD OF LEAST SQUARES THE METHOD OF LEAST SQUARES The goal: to measure (determne) an unknown quantty x (the value of a RV X) Realsaton: n results: y 1, y 2,..., y j,..., y n, (the measured values of Y 1, Y 2,..., Y j,..., Y n ) every result s encumbered

More information

Module 2 LOSSLESS IMAGE COMPRESSION SYSTEMS. Version 2 ECE IIT, Kharagpur

Module 2 LOSSLESS IMAGE COMPRESSION SYSTEMS. Version 2 ECE IIT, Kharagpur Module LOSSLESS IMAGE COMPRESSION SYSTEMS Lesson 3 Lossless Compresson: Huffman Codng Instructonal Objectves At the end of ths lesson, the students should be able to:. Defne and measure source entropy..

More information

Implementations of Web-based Recommender Systems Using Hybrid Methods

Implementations of Web-based Recommender Systems Using Hybrid Methods Internatonal Journal of Computer Scence & Applcatons Vol. 3 Issue 3, pp 52-64 2006 Technomathematcs Research Foundaton Implementatons of Web-based Recommender Systems Usng Hybrd Methods Janusz Sobeck Insttute

More information

Efficient Project Portfolio as a tool for Enterprise Risk Management

Efficient Project Portfolio as a tool for Enterprise Risk Management Effcent Proect Portfolo as a tool for Enterprse Rsk Management Valentn O. Nkonov Ural State Techncal Unversty Growth Traectory Consultng Company January 5, 27 Effcent Proect Portfolo as a tool for Enterprse

More information

STATISTICAL DATA ANALYSIS IN EXCEL

STATISTICAL DATA ANALYSIS IN EXCEL Mcroarray Center STATISTICAL DATA ANALYSIS IN EXCEL Lecture 6 Some Advanced Topcs Dr. Petr Nazarov 14-01-013 petr.nazarov@crp-sante.lu Statstcal data analyss n Ecel. 6. Some advanced topcs Correcton for

More information

SPEE Recommended Evaluation Practice #6 Definition of Decline Curve Parameters Background:

SPEE Recommended Evaluation Practice #6 Definition of Decline Curve Parameters Background: SPEE Recommended Evaluaton Practce #6 efnton of eclne Curve Parameters Background: The producton hstores of ol and gas wells can be analyzed to estmate reserves and future ol and gas producton rates and

More information

RESEARCH ON DUAL-SHAKER SINE VIBRATION CONTROL. Yaoqi FENG 1, Hanping QIU 1. China Academy of Space Technology (CAST) yaoqi.feng@yahoo.

RESEARCH ON DUAL-SHAKER SINE VIBRATION CONTROL. Yaoqi FENG 1, Hanping QIU 1. China Academy of Space Technology (CAST) yaoqi.feng@yahoo. ICSV4 Carns Australa 9- July, 007 RESEARCH ON DUAL-SHAKER SINE VIBRATION CONTROL Yaoq FENG, Hanpng QIU Dynamc Test Laboratory, BISEE Chna Academy of Space Technology (CAST) yaoq.feng@yahoo.com Abstract

More information

Time Value of Money Module

Time Value of Money Module Tme Value of Money Module O BJECTIVES After readng ths Module, you wll be able to: Understand smple nterest and compound nterest. 2 Compute and use the future value of a sngle sum. 3 Compute and use the

More information

Calculating the high frequency transmission line parameters of power cables

Calculating the high frequency transmission line parameters of power cables < ' Calculatng the hgh frequency transmsson lne parameters of power cables Authors: Dr. John Dcknson, Laboratory Servces Manager, N 0 RW E B Communcatons Mr. Peter J. Ncholson, Project Assgnment Manager,

More information

Project Networks With Mixed-Time Constraints

Project Networks With Mixed-Time Constraints Project Networs Wth Mxed-Tme Constrants L Caccetta and B Wattananon Western Australan Centre of Excellence n Industral Optmsaton (WACEIO) Curtn Unversty of Technology GPO Box U1987 Perth Western Australa

More information

Traffic State Estimation in the Traffic Management Center of Berlin

Traffic State Estimation in the Traffic Management Center of Berlin Traffc State Estmaton n the Traffc Management Center of Berln Authors: Peter Vortsch, PTV AG, Stumpfstrasse, D-763 Karlsruhe, Germany phone ++49/72/965/35, emal peter.vortsch@ptv.de Peter Möhl, PTV AG,

More information

NPAR TESTS. One-Sample Chi-Square Test. Cell Specification. Observed Frequencies 1O i 6. Expected Frequencies 1EXP i 6

NPAR TESTS. One-Sample Chi-Square Test. Cell Specification. Observed Frequencies 1O i 6. Expected Frequencies 1EXP i 6 PAR TESTS If a WEIGHT varable s specfed, t s used to replcate a case as many tmes as ndcated by the weght value rounded to the nearest nteger. If the workspace requrements are exceeded and samplng has

More information

Canon NTSC Help Desk Documentation

Canon NTSC Help Desk Documentation Canon NTSC Help Desk Documentaton READ THIS BEFORE PROCEEDING Before revewng ths documentaton, Canon Busness Solutons, Inc. ( CBS ) hereby refers you, the customer or customer s representatve or agent

More information

Construction Rules for Morningstar Canada Target Dividend Index SM

Construction Rules for Morningstar Canada Target Dividend Index SM Constructon Rules for Mornngstar Canada Target Dvdend Index SM Mornngstar Methodology Paper October 2014 Verson 1.2 2014 Mornngstar, Inc. All rghts reserved. The nformaton n ths document s the property

More information

Faraday's Law of Induction

Faraday's Law of Induction Introducton Faraday's Law o Inducton In ths lab, you wll study Faraday's Law o nducton usng a wand wth col whch swngs through a magnetc eld. You wll also examne converson o mechanc energy nto electrc energy

More information

A Multi-Camera System on PC-Cluster for Real-time 3-D Tracking

A Multi-Camera System on PC-Cluster for Real-time 3-D Tracking The 23 rd Conference of the Mechancal Engneerng Network of Thaland November 4 7, 2009, Chang Ma A Mult-Camera System on PC-Cluster for Real-tme 3-D Trackng Vboon Sangveraphunsr*, Krtsana Uttamang, and

More information

8.5 UNITARY AND HERMITIAN MATRICES. The conjugate transpose of a complex matrix A, denoted by A*, is given by

8.5 UNITARY AND HERMITIAN MATRICES. The conjugate transpose of a complex matrix A, denoted by A*, is given by 6 CHAPTER 8 COMPLEX VECTOR SPACES 5. Fnd the kernel of the lnear transformaton gven n Exercse 5. In Exercses 55 and 56, fnd the mage of v, for the ndcated composton, where and are gven by the followng

More information

1.1 The University may award Higher Doctorate degrees as specified from time-to-time in UPR AS11 1.

1.1 The University may award Higher Doctorate degrees as specified from time-to-time in UPR AS11 1. HIGHER DOCTORATE DEGREES SUMMARY OF PRINCIPAL CHANGES General changes None Secton 3.2 Refer to text (Amendments to verson 03.0, UPR AS02 are shown n talcs.) 1 INTRODUCTION 1.1 The Unversty may award Hgher

More information

Proceedings of the Annual Meeting of the American Statistical Association, August 5-9, 2001

Proceedings of the Annual Meeting of the American Statistical Association, August 5-9, 2001 Proceedngs of the Annual Meetng of the Amercan Statstcal Assocaton, August 5-9, 2001 LIST-ASSISTED SAMPLING: THE EFFECT OF TELEPHONE SYSTEM CHANGES ON DESIGN 1 Clyde Tucker, Bureau of Labor Statstcs James

More information

+ + + - - This circuit than can be reduced to a planar circuit

+ + + - - This circuit than can be reduced to a planar circuit MeshCurrent Method The meshcurrent s analog of the nodeoltage method. We sole for a new set of arables, mesh currents, that automatcally satsfy KCLs. As such, meshcurrent method reduces crcut soluton to

More information

Small pots lump sum payment instruction

Small pots lump sum payment instruction For customers Small pots lump sum payment nstructon Please read these notes before completng ths nstructon About ths nstructon Use ths nstructon f you re an ndvdual wth Aegon Retrement Choces Self Invested

More information

Taurid resonant-swarm encounters from two decades of visual observations

Taurid resonant-swarm encounters from two decades of visual observations Mon. Not. R. Astron. Soc. (2007) do:10.1111/j.1365-2966.2007.11488.x Taurd resonant-swarm encounters from two decades of vsual observatons A. Dubets 1,2 and R. Arlt 1 1 Internatonal Meteor Organzaton,

More information

The Current Employment Statistics (CES) survey,

The Current Employment Statistics (CES) survey, Busness Brths and Deaths Impact of busness brths and deaths n the payroll survey The CES probablty-based sample redesgn accounts for most busness brth employment through the mputaton of busness deaths,

More information

Help is a tou ch of a button away. Telecare - keeping you safe and independent in your own home. i Personal emergency equipment

Help is a tou ch of a button away. Telecare - keeping you safe and independent in your own home. i Personal emergency equipment Help s a tou ch of a button away Telecare - keepng you safe and ndependent n your own home Personal emergency equpment 24/7 moble response - ncludng a dgnty savng lftng servce Professonal support Welcome

More information

Vision Mouse. Saurabh Sarkar a* University of Cincinnati, Cincinnati, USA ABSTRACT 1. INTRODUCTION

Vision Mouse. Saurabh Sarkar a* University of Cincinnati, Cincinnati, USA ABSTRACT 1. INTRODUCTION Vson Mouse Saurabh Sarkar a* a Unversty of Cncnnat, Cncnnat, USA ABSTRACT The report dscusses a vson based approach towards trackng of eyes and fngers. The report descrbes the process of locatng the possble

More information

1. Measuring association using correlation and regression

1. Measuring association using correlation and regression How to measure assocaton I: Correlaton. 1. Measurng assocaton usng correlaton and regresson We often would lke to know how one varable, such as a mother's weght, s related to another varable, such as a

More information

the Manual on the global data processing and forecasting system (GDPFS) (WMO-No.485; available at http://www.wmo.int/pages/prog/www/manuals.

the Manual on the global data processing and forecasting system (GDPFS) (WMO-No.485; available at http://www.wmo.int/pages/prog/www/manuals. Gudelne on the exchange and use of EPS verfcaton results Update date: 30 November 202. Introducton World Meteorologcal Organzaton (WMO) CBS-XIII (2005) recommended that the general responsbltes for a Lead

More information

Nordea G10 Alpha Carry Index

Nordea G10 Alpha Carry Index Nordea G10 Alpha Carry Index Index Rules v1.1 Verson as of 10/10/2013 1 (6) Page 1 Index Descrpton The G10 Alpha Carry Index, the Index, follows the development of a rule based strategy whch nvests and

More information

Power-of-Two Policies for Single- Warehouse Multi-Retailer Inventory Systems with Order Frequency Discounts

Power-of-Two Policies for Single- Warehouse Multi-Retailer Inventory Systems with Order Frequency Discounts Power-of-wo Polces for Sngle- Warehouse Mult-Retaler Inventory Systems wth Order Frequency Dscounts José A. Ventura Pennsylvana State Unversty (USA) Yale. Herer echnon Israel Insttute of echnology (Israel)

More information

Journal of Statistical Software

Journal of Statistical Software JSS Journal of Statstcal Software November 2014, Volume 62, Issue 3. http://www.jstatsoft.org/ Learnng Contnuous Tme Bayesan Network Classfers Usng MapReduce Smone Vlla Unversty of Mlano-Bcocca Marco Rossett

More information

Study on Model of Risks Assessment of Standard Operation in Rural Power Network

Study on Model of Risks Assessment of Standard Operation in Rural Power Network Study on Model of Rsks Assessment of Standard Operaton n Rural Power Network Qngj L 1, Tao Yang 2 1 Qngj L, College of Informaton and Electrcal Engneerng, Shenyang Agrculture Unversty, Shenyang 110866,

More information

Level Annuities with Payments Less Frequent than Each Interest Period

Level Annuities with Payments Less Frequent than Each Interest Period Level Annutes wth Payments Less Frequent than Each Interest Perod 1 Annuty-mmedate 2 Annuty-due Level Annutes wth Payments Less Frequent than Each Interest Perod 1 Annuty-mmedate 2 Annuty-due Symoblc approach

More information

A Hierarchical Anomaly Network Intrusion Detection System using Neural Network Classification

A Hierarchical Anomaly Network Intrusion Detection System using Neural Network Classification IDC IDC A Herarchcal Anomaly Network Intruson Detecton System usng Neural Network Classfcaton ZHENG ZHANG, JUN LI, C. N. MANIKOPOULOS, JAY JORGENSON and JOSE UCLES ECE Department, New Jersey Inst. of Tech.,

More information

BERNSTEIN POLYNOMIALS

BERNSTEIN POLYNOMIALS On-Lne Geometrc Modelng Notes BERNSTEIN POLYNOMIALS Kenneth I. Joy Vsualzaton and Graphcs Research Group Department of Computer Scence Unversty of Calforna, Davs Overvew Polynomals are ncredbly useful

More information

ELM for Exchange version 5.5 Exchange Server Migration

ELM for Exchange version 5.5 Exchange Server Migration ELM for Exchange verson 5.5 Exchange Server Mgraton Copyrght 06 Lexmark. All rghts reserved. Lexmark s a trademark of Lexmark Internatonal, Inc., regstered n the U.S. and/or other countres. All other trademarks

More information

Enterprise Master Patient Index

Enterprise Master Patient Index Enterprse Master Patent Index Healthcare data are captured n many dfferent settngs such as hosptals, clncs, labs, and physcan offces. Accordng to a report by the CDC, patents n the Unted States made an

More information

10.2 Future Value and Present Value of an Ordinary Simple Annuity

10.2 Future Value and Present Value of an Ordinary Simple Annuity 348 Chapter 10 Annutes 10.2 Future Value and Present Value of an Ordnary Smple Annuty In compound nterest, 'n' s the number of compoundng perods durng the term. In an ordnary smple annuty, payments are

More information

A Simple Approach to Clustering in Excel

A Simple Approach to Clustering in Excel A Smple Approach to Clusterng n Excel Aravnd H Center for Computatonal Engneerng and Networng Amrta Vshwa Vdyapeetham, Combatore, Inda C Rajgopal Center for Computatonal Engneerng and Networng Amrta Vshwa

More information

PAS: A Packet Accounting System to Limit the Effects of DoS & DDoS. Debish Fesehaye & Klara Naherstedt University of Illinois-Urbana Champaign

PAS: A Packet Accounting System to Limit the Effects of DoS & DDoS. Debish Fesehaye & Klara Naherstedt University of Illinois-Urbana Champaign PAS: A Packet Accountng System to Lmt the Effects of DoS & DDoS Debsh Fesehaye & Klara Naherstedt Unversty of Illnos-Urbana Champagn DoS and DDoS DDoS attacks are ncreasng threats to our dgtal world. Exstng

More information

Traffic-light a stress test for life insurance provisions

Traffic-light a stress test for life insurance provisions MEMORANDUM Date 006-09-7 Authors Bengt von Bahr, Göran Ronge Traffc-lght a stress test for lfe nsurance provsons Fnansnspetonen P.O. Box 6750 SE-113 85 Stocholm [Sveavägen 167] Tel +46 8 787 80 00 Fax

More information

Software project management with GAs

Software project management with GAs Informaton Scences 177 (27) 238 241 www.elsever.com/locate/ns Software project management wth GAs Enrque Alba *, J. Francsco Chcano Unversty of Málaga, Grupo GISUM, Departamento de Lenguajes y Cencas de

More information

IMPACT ANALYSIS OF A CELLULAR PHONE

IMPACT ANALYSIS OF A CELLULAR PHONE 4 th ASA & μeta Internatonal Conference IMPACT AALYSIS OF A CELLULAR PHOE We Lu, 2 Hongy L Bejng FEAonlne Engneerng Co.,Ltd. Bejng, Chna ABSTRACT Drop test smulaton plays an mportant role n nvestgatng

More information

MONITORING METHODOLOGY TO ASSESS THE PERFORMANCE OF GSM NETWORKS

MONITORING METHODOLOGY TO ASSESS THE PERFORMANCE OF GSM NETWORKS Electronc Communcatons Commttee (ECC) wthn the European Conference of Postal and Telecommuncatons Admnstratons (CEPT) MONITORING METHODOLOGY TO ASSESS THE PERFORMANCE OF GSM NETWORKS Athens, February 2008

More information

Updating the E5810B firmware

Updating the E5810B firmware Updatng the E5810B frmware NOTE Do not update your E5810B frmware unless you have a specfc need to do so, such as defect repar or nstrument enhancements. If the frmware update fals, the E5810B wll revert

More information

14.74 Lecture 5: Health (2)

14.74 Lecture 5: Health (2) 14.74 Lecture 5: Health (2) Esther Duflo February 17, 2004 1 Possble Interventons Last tme we dscussed possble nterventons. Let s take one: provdng ron supplements to people, for example. From the data,

More information

Texas Instruments 30X IIS Calculator

Texas Instruments 30X IIS Calculator Texas Instruments 30X IIS Calculator Keystrokes for the TI-30X IIS are shown for a few topcs n whch keystrokes are unque. Start by readng the Quk Start secton. Then, before begnnng a specfc unt of the

More information

QOS DISTRIBUTION MONITORING FOR PERFORMANCE MANAGEMENT IN MULTIMEDIA NETWORKS

QOS DISTRIBUTION MONITORING FOR PERFORMANCE MANAGEMENT IN MULTIMEDIA NETWORKS QOS DISTRIBUTION MONITORING FOR PERFORMANCE MANAGEMENT IN MULTIMEDIA NETWORKS Yumng Jang, Chen-Khong Tham, Ch-Chung Ko Department Electrcal Engneerng Natonal Unversty Sngapore 119260 Sngapore Emal: {engp7450,

More information

Extending Probabilistic Dynamic Epistemic Logic

Extending Probabilistic Dynamic Epistemic Logic Extendng Probablstc Dynamc Epstemc Logc Joshua Sack May 29, 2008 Probablty Space Defnton A probablty space s a tuple (S, A, µ), where 1 S s a set called the sample space. 2 A P(S) s a σ-algebra: a set

More information

Section 5.4 Annuities, Present Value, and Amortization

Section 5.4 Annuities, Present Value, and Amortization Secton 5.4 Annutes, Present Value, and Amortzaton Present Value In Secton 5.2, we saw that the present value of A dollars at nterest rate per perod for n perods s the amount that must be deposted today

More information

An interactive system for structure-based ASCII art creation

An interactive system for structure-based ASCII art creation An nteractve system for structure-based ASCII art creaton Katsunor Myake Henry Johan Tomoyuk Nshta The Unversty of Tokyo Nanyang Technologcal Unversty Abstract Non-Photorealstc Renderng (NPR), whose am

More information

Linear Circuits Analysis. Superposition, Thevenin /Norton Equivalent circuits

Linear Circuits Analysis. Superposition, Thevenin /Norton Equivalent circuits Lnear Crcuts Analyss. Superposton, Theenn /Norton Equalent crcuts So far we hae explored tmendependent (resste) elements that are also lnear. A tmendependent elements s one for whch we can plot an / cure.

More information

Intra-year Cash Flow Patterns: A Simple Solution for an Unnecessary Appraisal Error

Intra-year Cash Flow Patterns: A Simple Solution for an Unnecessary Appraisal Error Intra-year Cash Flow Patterns: A Smple Soluton for an Unnecessary Apprasal Error By C. Donald Wggns (Professor of Accountng and Fnance, the Unversty of North Florda), B. Perry Woodsde (Assocate Professor

More information

The Application of Fractional Brownian Motion in Option Pricing

The Application of Fractional Brownian Motion in Option Pricing Vol. 0, No. (05), pp. 73-8 http://dx.do.org/0.457/jmue.05.0..6 The Applcaton of Fractonal Brownan Moton n Opton Prcng Qng-xn Zhou School of Basc Scence,arbn Unversty of Commerce,arbn zhouqngxn98@6.com

More information

Safety instructions VEGAVIB VB6*.GI*******

Safety instructions VEGAVIB VB6*.GI******* Safety nstructons VEGAVIB VB6*.GI******* Kosha 14-AV4BO-0107 Ex td A20, A20/21, A21 IP66 T** 0044 Document ID: 48578 Contents 1 Area of applcablty... 3 2 General nformaton... 3 3 Techncal data... 3 4 Applcaton

More information

Pre-entry Review. Industry Applications. NESUG '96 Proceedings 330

Pre-entry Review. Industry Applications. NESUG '96 Proceedings 330 ndustry Applcatons THE ROLE OF SAS PROGRAMMERS N CLNCAL TRAL DATA ANALYSS Mng Wang ndependent SAS Consultant Abstract Ths artcle shows n-depth the role of SAS programmers n clncal tral data analyss. t

More information

A Performance Analysis of View Maintenance Techniques for Data Warehouses

A Performance Analysis of View Maintenance Techniques for Data Warehouses A Performance Analyss of Vew Mantenance Technques for Data Warehouses Xng Wang Dell Computer Corporaton Round Roc, Texas Le Gruenwald The nversty of Olahoma School of Computer Scence orman, OK 739 Guangtao

More information

GENESYS BUSINESS MANAGER

GENESYS BUSINESS MANAGER GENESYS BUSINESS MANAGER e-manager Onlne Conference User Account Admnstraton User Gude Ths User Gude contans the followng sectons: Mnmum Requrements...3 Gettng Started...4 Sgnng On to Genesys Busness Manager...7

More information

A Novel Methodology of Working Capital Management for Large. Public Constructions by Using Fuzzy S-curve Regression

A Novel Methodology of Working Capital Management for Large. Public Constructions by Using Fuzzy S-curve Regression Novel Methodology of Workng Captal Management for Large Publc Constructons by Usng Fuzzy S-curve Regresson Cheng-Wu Chen, Morrs H. L. Wang and Tng-Ya Hseh Department of Cvl Engneerng, Natonal Central Unversty,

More information

Invoicing and Financial Forecasting of Time and Amount of Corresponding Cash Inflow

Invoicing and Financial Forecasting of Time and Amount of Corresponding Cash Inflow Dragan Smć Svetlana Smć Vasa Svrčevć Invocng and Fnancal Forecastng of Tme and Amount of Correspondng Cash Inflow Artcle Info:, Vol. 6 (2011), No. 3, pp. 014-021 Receved 13 Janyary 2011 Accepted 20 Aprl

More information

A Programming Model for the Cloud Platform

A Programming Model for the Cloud Platform Internatonal Journal of Advanced Scence and Technology A Programmng Model for the Cloud Platform Xaodong Lu School of Computer Engneerng and Scence Shangha Unversty, Shangha 200072, Chna luxaodongxht@qq.com

More information

Abteilung für Stadt- und Regionalentwicklung Department of Urban and Regional Development

Abteilung für Stadt- und Regionalentwicklung Department of Urban and Regional Development Abtelung für Stadt- und Regonalentwcklung Department of Urban and Regonal Development Gunther Maer, Alexander Kaufmann The Development of Computer Networks Frst Results from a Mcroeconomc Model SRE-Dscusson

More information