Eight Examples of Linear and Nonlinear Least Squares

Μέγεθος: px
Εμφάνιση ξεκινά από τη σελίδα:

Download "Eight Examples of Linear and Nonlinear Least Squares"

Transcript

1 Eight Examples of Linear and Nonlinear Least Squares CEE 699.4, ME 99.4 Sstem Identification Fall, 21 c Henri P. Gavin, September 2, 21 1 Not polnomial, but linear in parameters. ŷ(t i ; a) = a 1 sin(t i ) + a 2 sin(2t i ) + a sin(t i ) + a 4 sin(4t i ) (1) SE_data =.181 a a_lls +/- da (percent) Example true -1. data +/- 9% c.i x 1

2 2 CEE 699.4, ME. Sstem Identification Duke Universit Fall 21 H.P. Gavin 2 Linear Fit in Multi-Dimensions. ŷ(x 1 (t i ), x 2 (t i ); a) = a 1 tanh(x 1 (t i )) + a 2 x 2 (t i ) + a x 1 (t i ) + a 4 x 1(t i ) (2) x 1 (t i ) is like a time-varing displacement x 2 (t i ) is like a time-varing velocit SE_data = a a_lls +/- da (percent) true -1 data +/- c.i Example 2 t x 1 x 2

3 Eight Examples of Linear and Nonlinear Least Squares Power-Law Fit NOT linear in parameters, but transformable? ŷ(x i ; a) = a 1 x a2 i () log(ŷ(x i ; a)) = log(a 1 ) + a 2 log(x i )?? (4) Parameters from Linear Least Squares applied to transformed equations: See Fig -a SE_data =.49 a a_lls +/- da (percent) 1.e e e e+2 2.e+ 1.87e e e+ Parameters from Nonlinear Least Squares: See Fig -b a a_lm +/- da (percent) Example - a (log-transformed linear least squares) true data +/- 9% c.i. Example - b (non-linear least squares) x 1 % f i t.m nonlinear least squares with power law 2 function _ = ( x_data,a); _ = a (1) * x_data.ˆ a (2); The log-error function under-values the data with larger measurement error.

4 4 CEE 699.4, ME. Sstem Identification Duke Universit Fall 21 H.P. Gavin 4 Nonlinear Least Squares with Exponentials Parameters from Nonlinear Least Squares: ŷ(x i ; a) = a 1 exp[ x i /a 2 ] + a exp[ x i /a 4 ] () a a_lm +/- da (percent) Example true data +/- 9% c.i % f i t 4.m nonlinear least squares with exponentials 2 function _ = 4 ( x_data,a) 4 _ = a (1)*exp(- x_data /a (2)) + a ()* x_data.*exp(- x_data /a (4)); x

5 Eight Examples of Linear and Nonlinear Least Squares Ratio of complex-valued polnomials NOT linear in parameters, but transformable? Ĥ(ω k ; a) = a 1 (iω k ) + a 2 (iω k ) 2 + a (iω k ) 1 + a 4 (iω k ) + a (iω k ) 2 + a 6 (iω k ) + a 7 (iω k ) 4 (6) e k = H(ω k ) ( 1 + a 4 (iω k ) + a (iω k ) 2 + a 6 (iω k ) + a 7 (iω k ) 4) ( a 1 (iω k ) + a 2 (iω k ) 2 + a (iω k ) )?? (7) Parameters from Linear Least Squares applied to transformed equations: See Fig -a SE_data =.26 a a_lls +/- da (percent) 1.e e e e+2-2.e e e e+1 1.e e e e+1 1.e e e e+2.e e-1 4.8e e+1 1.e e e e+1 1.e e-2.847e e+1 Parameters from Nonlinear Least Squares: See Fig -b a a_lm +/- da (percent) 1.e e e e+ -2.e e e e+ 1.e+ 1.12e e-2 7.2e+ 1.e e e e+.e e e e-1 1.e e e- 7.62e+ 1.e e e e+ 1 % f i t.m nonlinear least squares with ratio of complex valued polnomials 2 function H_ = ( w_data,a); 4 iw_data = sqrt ( -1) * w_data ; 6 H_ = (a (1)* iw_data + a (2)* iw_data.ˆ2 + a ()* iw_data.ˆ )./... 7 (1. + a (4)* iw_data + a ()* iw_data.ˆ2 + a (6)* iw_data.ˆ + a (7)* iw_data.ˆ4 ); 1 % f i t b.m ratio of complex valued exponentials... 2 % for use with Levenberg Marquard f i t t i n g... lm.m % negative frequenc has the imaginar part, positive frequenc has the real part 4 function H_ = b ( w_data,a); 6 iw_data = sqrt ( -1) * w_data ; 7 8 H_ = (a (1)* iw_data + a (2)* iw_data.ˆ2 + a ()* iw_data.ˆ )./... 9 (1 + a (4)* iw_data + a ()* iw_data.ˆ2 + a (6)* iw_data.ˆ + a (7)* iw_data.ˆ4); 1 11 M = length( w_data ); 12 H_ = [imag( _ (1:( M -1)/2+1)) ; real ( _ ((M -1)/2+2: M)) ];

6 6 CEE 699.4, ME. Sstem Identification Duke Universit Fall 21 H.P. Gavin 2 Example (a) 1 H(f) Example (b) 1 H(f) f 2 parameter values χ2 /(m-n+1) and λ function calls λ

7 Eight Examples of Linear and Nonlinear Least Squares 7 6 Impulse Reponse Function Parameters from Nonlinear Least Squares: ŷ(t k ; a) = a 1 exp[(ia 2 + a )t k ] + a 4 exp[(ia + a 6 )t k ] (8) a a_lm +/- da (percent) 6.e+.922e+.776e-1.674e+.e+.4e+.966e- 1.96e-1-1.e e e- 9.46e+ 1.2e e e-1.8e+ 9.e e+ 7.16e- 7.97e-2-2.e e-1 1.e-2.82e+ 1 1 Example 6 true data +/- 9% c.i. : true,, and data % f i t 6.m impulse response function 2 function _ = 6 ( t_data,a); 4 i = sqrt ( -1); 6 _ = a (1)*exp(( i*a (2)+a())* t_data ) + a (4)*exp(( i*a ()+a(6))* t_data ); 7 8 _ = real ( _ ); % taking the real part is l i k e adding the complex conjugate t

8 8 CEE 699.4, ME. Sstem Identification Duke Universit Fall 21 H.P. Gavin 7 Auto Regressive - Moving Average Model NOT linear in the parameters, but transformable? ŷ(t i ; a, b) = a k ŷ(t i k ; a, b) + b k u(t i k ) (9) k=1 k= ŷ(t i ; a, b) = a k (t i k ) + b k u(t i k )?? (1) k=1 k= Parameters from Linear Least Squares (Fig 7a) and Nonlinear Least Squares: (Fig 7b) a a_lls a_nls +/- da (percent) 1.e+ 1.e+ 1.e+.99e+2.99e+4-7.e e e-1.8e+2.997e+4.e e-1.11e e e+4-2.e-1-1.8e e e e+4 b b_lls b_nls +/- db (percent).e e-1 6.e e e+4 1.e e e+ 4.98e+2.987e+4 1.e+ 1.67e e+.677e+2.998e+4 2.e e+ 2.1e+ 8.21e+2.986e+4 1 % f i t 7.m Auto regressive moving average (ARMA) model 2 function _ = 7 ( x_data, Cab ); 4 global u_data na nb 6 Ca_ = Cab (1: na ); 7 Cb_ = Cab ( na +1: na+nb ); 8 9 _ = f i l t e r ( Cb_, Ca_, u_data );

9 Eight Examples of Linear and Nonlinear Least Squares 9 Example 7(a) Example 7(b) t

10 1 CEE 699.4, ME. Sstem Identification Duke Universit Fall 21 H.P. Gavin 8 Identif Stiffness and Damping parameters directl NOT linear in the parameters. M r(t) + Cṙ(t) + Kr(t) = Mhu(t) (11) M = I C = c 1 + c 2 c 2 c 2 c 2 + c c c c K = k 1 + k 2 k 2 k 2 k 2 + k k k k h = (12) [ d ṙ dt r ] = [ I M 1 K M 1 C ] [ ṙ r ] [ + h ] u(t) (1) = r (t) + u(t) (14) a_true a_lm +/- da (percent) 2.e e e-2.78e-.e+1.291e e e-2.e e+1 6.e e-2 1.e e e e-2.e e e e-1 1.e e-1 6.9e e-1 1 % f i t 8.m nonlinear least squares for a linear dnamic sstem 2 function _ = 8 ( t_data,a); 4 global u_data ; 6 k1 = a (1); % s t i f f n e s s parameter 1 7 k2 = a (2); % s t i f f n e s s parameter 2 8 k = a (); % s t i f f n e s s parameter 9 c1 = a (4); % damping parameter 1 1 c2 = a (); % damping parameter 2 11 c = a (6); % damping parameter 12 1 Ks = [ k1+k2 -k2 ; % s t i f f n e s s matrix 14 -k2 k2+k -k ; 1 -k k ]; Cs = [ c1+c2 -c2 ; % damping matrix 18 -c2 c2+c -c ; 19 -c c ]; 2 21 Ms = ee(); % mass matrix 22 2 A = [ zeros () ee() ; % dnamic matrix 24 -Ms\ Ks -Ms\ Cs ]; 2 26 B = [ ; ; ; -1; -1; -1 ]; % input i s acceleration of base %C = [ 1 ] ; % output msmnt is displ of DOF # 29 %C = [ 1 ] ; % output msmnt is veloc of DOF # 2 C = A (6,:); % output msmnt is accel of DOF # 1 2 D = ; 4 % damp(a) % check eigenvalues of dnamics matrix 6 _ = lsim (A,B,C,D, u_data, t_data ) ;

11 Eight Examples of Linear and Nonlinear Least Squares true data +/- 9% c.i t 6 parameter values χ2 /(m-n+1) and λ function calls 1 χ2 /(m-n+1) λ

Numerical Analysis FMN011

Numerical Analysis FMN011 Numerical Analysis FMN011 Carmen Arévalo Lund University carmen@maths.lth.se Lecture 12 Periodic data A function g has period P if g(x + P ) = g(x) Model: Trigonometric polynomial of order M T M (x) =

Διαβάστε περισσότερα

Probability and Random Processes (Part II)

Probability and Random Processes (Part II) Probability and Random Processes (Part II) 1. If the variance σ x of d(n) = x(n) x(n 1) is one-tenth the variance σ x of a stationary zero-mean discrete-time signal x(n), then the normalized autocorrelation

Διαβάστε περισσότερα

ECE 308 SIGNALS AND SYSTEMS FALL 2017 Answers to selected problems on prior years examinations

ECE 308 SIGNALS AND SYSTEMS FALL 2017 Answers to selected problems on prior years examinations ECE 308 SIGNALS AND SYSTEMS FALL 07 Answers to selected problems on prior years examinations Answers to problems on Midterm Examination #, Spring 009. x(t) = r(t + ) r(t ) u(t ) r(t ) + r(t 3) + u(t +

Διαβάστε περισσότερα

( ) 2 and compare to M.

( ) 2 and compare to M. Problems and Solutions for Section 4.2 4.9 through 4.33) 4.9 Calculate the square root of the matrix 3!0 M!0 8 Hint: Let M / 2 a!b ; calculate M / 2!b c ) 2 and compare to M. Solution: Given: 3!0 M!0 8

Διαβάστε περισσότερα

Assignment 1 Solutions Complex Sinusoids

Assignment 1 Solutions Complex Sinusoids Assignment Solutions Complex Sinusoids ECE 223 Signals and Systems II Version. Spring 26. Eigenfunctions of LTI systems. Which of the following signals are eigenfunctions of LTI systems? a. x[n] =cos(

Διαβάστε περισσότερα

1 1 1 2 1 2 2 1 43 123 5 122 3 1 312 1 1 122 1 1 1 1 6 1 7 1 6 1 7 1 3 4 2 312 43 4 3 3 1 1 4 1 1 52 122 54 124 8 1 3 1 1 1 1 1 152 1 1 1 1 1 1 152 1 5 1 152 152 1 1 3 9 1 159 9 13 4 5 1 122 1 4 122 5

Διαβάστε περισσότερα

A Method of Trajectory Tracking Control for Nonminimum Phase Continuous Time Systems

A Method of Trajectory Tracking Control for Nonminimum Phase Continuous Time Systems IIC-11-8 A Method of Trajectory Tracking Control for Nonminimum Phase Continuous Time Systems Takayuki Shiraishi, iroshi Fujimoto (The University of Tokyo) Abstract The purpose of this paper is achievement

Διαβάστε περισσότερα

Patrycja Miszczyk, Dorota Wieczorek, Joanna Gałęzowska, Błażej Dziuk, Joanna Wietrzyk and Ewa Chmielewska. 1. Spectroscopic Data.

Patrycja Miszczyk, Dorota Wieczorek, Joanna Gałęzowska, Błażej Dziuk, Joanna Wietrzyk and Ewa Chmielewska. 1. Spectroscopic Data. ; doi:10.3390/molecules22020254 S1 of S23 Supplementary Materials: Reaction of 3-Amino-1,2,4-Triazole with Diethyl Phosphite and Triethyl Orthoformate: Acid-Base Properties and Antiosteoporotic Activities

Διαβάστε περισσότερα

DERIVATION OF MILES EQUATION FOR AN APPLIED FORCE Revision C

DERIVATION OF MILES EQUATION FOR AN APPLIED FORCE Revision C DERIVATION OF MILES EQUATION FOR AN APPLIED FORCE Revision C By Tom Irvine Email: tomirvine@aol.com August 6, 8 Introduction The obective is to derive a Miles equation which gives the overall response

Διαβάστε περισσότερα

Forced Pendulum Numerical approach

Forced Pendulum Numerical approach Numerical approach UiO April 8, 2014 Physical problem and equation We have a pendulum of length l, with mass m. The pendulum is subject to gravitation as well as both a forcing and linear resistance force.

Διαβάστε περισσότερα

ΗΜΥ 220: ΣΗΜΑΤΑ ΚΑΙ ΣΥΣΤΗΜΑΤΑ Ι Ακαδημαϊκό έτος Εαρινό Εξάμηνο Κατ οίκον εργασία αρ. 2

ΗΜΥ 220: ΣΗΜΑΤΑ ΚΑΙ ΣΥΣΤΗΜΑΤΑ Ι Ακαδημαϊκό έτος Εαρινό Εξάμηνο Κατ οίκον εργασία αρ. 2 ΤΜΗΜΑ ΗΛΕΚΤΡΟΛΟΓΩΝ ΜΗΧΑΝΙΚΩΝ ΚΑΙ ΜΗΧΑΝΙΚΩΝ ΥΠΟΛΟΓΙΣΤΩΝ ΠΑΝΕΠΙΣΤΗΜΙΟ ΚΥΠΡΟΥ ΗΜΥ 220: ΣΗΜΑΤΑ ΚΑΙ ΣΥΣΤΗΜΑΤΑ Ι Ακαδημαϊκό έτος 2007-08 -- Εαρινό Εξάμηνο Κατ οίκον εργασία αρ. 2 Ημερομηνία Παραδόσεως: Παρασκευή

Διαβάστε περισσότερα

Queensland University of Technology Transport Data Analysis and Modeling Methodologies

Queensland University of Technology Transport Data Analysis and Modeling Methodologies Queensland University of Technology Transport Data Analysis and Modeling Methodologies Lab Session #7 Example 5.2 (with 3SLS Extensions) Seemingly Unrelated Regression Estimation and 3SLS A survey of 206

Διαβάστε περισσότερα

2. Laser Specifications 2 1 Specifications IK4301R D IK4401R D IK4601R E IK4101R F. Linear Linear Linear Linear

2. Laser Specifications 2 1 Specifications IK4301R D IK4401R D IK4601R E IK4101R F. Linear Linear Linear Linear 2. Laser Specifications 2 1 Specifications IK4301R D IK4401R D IK4601R E IK4101R F 441.6 441.6 441.6 441.6 30 50 70 100 TEM00 TEM00 TEM00 TEM00 BEAM DIAMETER ( 1/e2) 1.1 1.1 1.2 1.2 0.5 0.5 0.5 0.4 RATIO

Διαβάστε περισσότερα

Ηλεκτρονικοί Υπολογιστές IV

Ηλεκτρονικοί Υπολογιστές IV ΠΑΝΕΠΙΣΤΗΜΙΟ ΙΩΑΝΝΙΝΩΝ ΑΝΟΙΚΤΑ ΑΚΑΔΗΜΑΪΚΑ ΜΑΘΗΜΑΤΑ Ηλεκτρονικοί Υπολογιστές IV Δυναμική του χρέους και του ελλείμματος Διδάσκων: Επίκουρος Καθηγητής Αθανάσιος Σταυρακούδης Άδειες Χρήσης Το παρόν εκπαιδευτικό

Διαβάστε περισσότερα

HW 3 Solutions 1. a) I use the auto.arima R function to search over models using AIC and decide on an ARMA(3,1)

HW 3 Solutions 1. a) I use the auto.arima R function to search over models using AIC and decide on an ARMA(3,1) HW 3 Solutions a) I use the autoarima R function to search over models using AIC and decide on an ARMA3,) b) I compare the ARMA3,) to ARMA,0) ARMA3,) does better in all three criteria c) The plot of the

Διαβάστε περισσότερα

Ó³ Ÿ , º 2(214).. 171Ä176. Š Œ œ ƒˆˆ ˆ ˆŠ

Ó³ Ÿ , º 2(214).. 171Ä176. Š Œ œ ƒˆˆ ˆ ˆŠ Ó³ Ÿ. 218.. 15, º 2(214).. 171Ä176 Š Œ œ ƒˆˆ ˆ ˆŠ ˆ ˆ ˆ Š Š Œ Œ Ÿ ˆ Š ˆ Š ˆ ˆŠ Œ œ ˆ.. Š Ö,, 1,.. ˆ μ,,.. μ³ μ,.. ÉÓÖ μ,,.š. ʳÖ,, Í μ ²Ó Ò ² μ É ²Ó ± Ö Ò Ê É É Œˆ ˆ, Œμ ± Ñ Ò É ÉÊÉ Ö ÒÌ ² μ, Ê μ ± Ê É

Διαβάστε περισσότερα

Oscillatory Gap Damping

Oscillatory Gap Damping Oscillatory Gap Damping Find the damping due to the linear motion of a viscous gas in in a gap with an oscillating size: ) Find the motion in a gap due to an oscillating external force; ) Recast the solution

Διαβάστε περισσότερα

Other Test Constructions: Likelihood Ratio & Bayes Tests

Other Test Constructions: Likelihood Ratio & Bayes Tests Other Test Constructions: Likelihood Ratio & Bayes Tests Side-Note: So far we have seen a few approaches for creating tests such as Neyman-Pearson Lemma ( most powerful tests of H 0 : θ = θ 0 vs H 1 :

Διαβάστε περισσότερα

22 .5 Real consumption.5 Real residential investment.5.5.5 965 975 985 995 25.5 965 975 985 995 25.5 Real house prices.5 Real fixed investment.5.5.5 965 975 985 995 25.5 965 975 985 995 25.3 Inflation

Διαβάστε περισσότερα

6.1. Dirac Equation. Hamiltonian. Dirac Eq.

6.1. Dirac Equation. Hamiltonian. Dirac Eq. 6.1. Dirac Equation Ref: M.Kaku, Quantum Field Theory, Oxford Univ Press (1993) η μν = η μν = diag(1, -1, -1, -1) p 0 = p 0 p = p i = -p i p μ p μ = p 0 p 0 + p i p i = E c 2 - p 2 = (m c) 2 H = c p 2

Διαβάστε περισσότερα

Homework 8 Model Solution Section

Homework 8 Model Solution Section MATH 004 Homework Solution Homework 8 Model Solution Section 14.5 14.6. 14.5. Use the Chain Rule to find dz where z cosx + 4y), x 5t 4, y 1 t. dz dx + dy y sinx + 4y)0t + 4) sinx + 4y) 1t ) 0t + 4t ) sinx

Διαβάστε περισσότερα

ST5224: Advanced Statistical Theory II

ST5224: Advanced Statistical Theory II ST5224: Advanced Statistical Theory II 2014/2015: Semester II Tutorial 7 1. Let X be a sample from a population P and consider testing hypotheses H 0 : P = P 0 versus H 1 : P = P 1, where P j is a known

Διαβάστε περισσότερα

Section 8.3 Trigonometric Equations

Section 8.3 Trigonometric Equations 99 Section 8. Trigonometric Equations Objective 1: Solve Equations Involving One Trigonometric Function. In this section and the next, we will exple how to solving equations involving trigonometric functions.

Διαβάστε περισσότερα

Supplementary Information 1.

Supplementary Information 1. Supplementary Information 1. Fig. S1. Correlations between litter-derived-c and N (percent of initial input) and Al-/Fe- (hydr)oxides dissolved by ammonium oxalate (AO); a) 0 10 cm; b) 10 20 cm; c) 20

Διαβάστε περισσότερα

DATA SHEET Surface mount NTC thermistors. BCcomponents

DATA SHEET Surface mount NTC thermistors. BCcomponents DATA SHEET 2322 615 1... Surface mount N thermistors Supersedes data of 17th May 1999 File under BCcomponents, BC02 2001 Mar 27 FEATURES High sensitivity High accuracy over a wide temperature range Taped

Διαβάστε περισσότερα

.5 Real consumption.5 Real residential investment.5.5.5 965 975 985 995 25.5 965 975 985 995 25.5 Real house prices.5 Real fixed investment.5.5.5 965 975 985 995 25.5 965 975 985 995 25.3 Inflation rate.3

Διαβάστε περισσότερα

4.6 Autoregressive Moving Average Model ARMA(1,1)

4.6 Autoregressive Moving Average Model ARMA(1,1) 84 CHAPTER 4. STATIONARY TS MODELS 4.6 Autoregressive Moving Average Model ARMA(,) This section is an introduction to a wide class of models ARMA(p,q) which we will consider in more detail later in this

Διαβάστε περισσότερα

Module 5. February 14, h 0min

Module 5. February 14, h 0min Module 5 Stationary Time Series Models Part 2 AR and ARMA Models and Their Properties Class notes for Statistics 451: Applied Time Series Iowa State University Copyright 2015 W. Q. Meeker. February 14,

Διαβάστε περισσότερα

LTI Systems (1A) Young Won Lim 3/21/15

LTI Systems (1A) Young Won Lim 3/21/15 LTI Systems (1A) Copyright (c) 214 Young W. Lim. Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version

Διαβάστε περισσότερα

Chapter 6: Systems of Linear Differential. be continuous functions on the interval

Chapter 6: Systems of Linear Differential. be continuous functions on the interval Chapter 6: Systems of Linear Differential Equations Let a (t), a 2 (t),..., a nn (t), b (t), b 2 (t),..., b n (t) be continuous functions on the interval I. The system of n first-order differential equations

Διαβάστε περισσότερα

1 (forward modeling) 2 (data-driven modeling) e- Quest EnergyPlus DeST 1.1. {X t } ARMA. S.Sp. Pappas [4]

1 (forward modeling) 2 (data-driven modeling) e- Quest EnergyPlus DeST 1.1. {X t } ARMA. S.Sp. Pappas [4] 212 2 ( 4 252 ) No.2 in 212 (Total No.252 Vol.4) doi 1.3969/j.issn.1673-7237.212.2.16 STANDARD & TESTING 1 2 2 (1. 2184 2. 2184) CensusX12 ARMA ARMA TU111.19 A 1673-7237(212)2-55-5 Time Series Analysis

Διαβάστε περισσότερα

10.7 Performance of Second-Order System (Unit Step Response)

10.7 Performance of Second-Order System (Unit Step Response) Lecture Notes on Control Systems/D. Ghose/0 57 0.7 Performance of Second-Order System (Unit Step Response) Consider the second order system a ÿ + a ẏ + a 0 y = b 0 r So, Y (s) R(s) = b 0 a s + a s + a

Διαβάστε περισσότερα

Ηλεκτρονικοί Υπολογιστές IV

Ηλεκτρονικοί Υπολογιστές IV ΠΑΝΕΠΙΣΤΗΜΙΟ ΙΩΑΝΝΙΝΩΝ ΑΝΟΙΚΤΑ ΑΚΑΔΗΜΑΪΚΑ ΜΑΘΗΜΑΤΑ Ηλεκτρονικοί Υπολογιστές IV Εισαγωγή στα δυναμικά συστήματα Διδάσκων: Επίκουρος Καθηγητής Αθανάσιος Σταυρακούδης Άδειες Χρήσης Το παρόν εκπαιδευτικό υλικό

Διαβάστε περισσότερα

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 19/5/2007

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 19/5/2007 Οδηγίες: Να απαντηθούν όλες οι ερωτήσεις. Αν κάπου κάνετε κάποιες υποθέσεις να αναφερθούν στη σχετική ερώτηση. Όλα τα αρχεία που αναφέρονται στα προβλήματα βρίσκονται στον ίδιο φάκελο με το εκτελέσιμο

Διαβάστε περισσότερα

Matrices and Determinants

Matrices and Determinants Matrices and Determinants SUBJECTIVE PROBLEMS: Q 1. For what value of k do the following system of equations possess a non-trivial (i.e., not all zero) solution over the set of rationals Q? x + ky + 3z

Διαβάστε περισσότερα

Μοντέρνα Θεωρία Ελέγχου

Μοντέρνα Θεωρία Ελέγχου ΑΡΙΣΤΟΤΕΛΕΙΟ ΠΑΝΕΠΙΣΤΗΜΙΟ ΘΕΣΣΑΛΟΝΙΚΗΣ ΑΝΟΙΧΤΑ ΑΚΑΔΗΜΑΙΚΑ ΜΑΘΗΜΑΤΑ Ενότητα 11. Ελεγξιμότητα (μέρος 2ο) Νίκος Καραμπετάκης Άδειες Χρήσης Το παρόν εκπαιδευτικό υλικό υπόκειται σε άδειες χρήσης Creative Commons.

Διαβάστε περισσότερα

Elements of Information Theory

Elements of Information Theory Elements of Information Theory Model of Digital Communications System A Logarithmic Measure for Information Mutual Information Units of Information Self-Information News... Example Information Measure

Διαβάστε περισσότερα

Cycloaddition of Homochiral Dihydroimidazoles: A 1,3-Dipolar Cycloaddition Route to Optically Active Pyrrolo[1,2-a]imidazoles

Cycloaddition of Homochiral Dihydroimidazoles: A 1,3-Dipolar Cycloaddition Route to Optically Active Pyrrolo[1,2-a]imidazoles X-Ray crystallographic data tables for paper: Supplementary Material (ESI) for Organic & Biomolecular Chemistry Cycloaddition of Homochiral Dihydroimidazoles: A 1,3-Dipolar Cycloaddition Route to Optically

Διαβάστε περισσότερα

DETERMINATION OF DYNAMIC CHARACTERISTICS OF A 2DOF SYSTEM. by Zoran VARGA, Ms.C.E.

DETERMINATION OF DYNAMIC CHARACTERISTICS OF A 2DOF SYSTEM. by Zoran VARGA, Ms.C.E. DETERMINATION OF DYNAMIC CHARACTERISTICS OF A 2DOF SYSTEM by Zoran VARGA, Ms.C.E. Euro-Apex B.V. 1990-2012 All Rights Reserved. The 2 DOF System Symbols m 1 =3m [kg] m 2 =8m m=10 [kg] l=2 [m] E=210000

Διαβάστε περισσότερα

Πρόβλημα 1: Αναζήτηση Ελάχιστης/Μέγιστης Τιμής

Πρόβλημα 1: Αναζήτηση Ελάχιστης/Μέγιστης Τιμής Πρόβλημα 1: Αναζήτηση Ελάχιστης/Μέγιστης Τιμής Να γραφεί πρόγραμμα το οποίο δέχεται ως είσοδο μια ακολουθία S από n (n 40) ακέραιους αριθμούς και επιστρέφει ως έξοδο δύο ακολουθίες από θετικούς ακέραιους

Διαβάστε περισσότερα

NMBTC.COM /

NMBTC.COM / Common Common Vibration Test:... Conforms to JIS C 60068-2-6, Amplitude: 1.5mm, Frequency 10 to 55 Hz, 1 hour in each of the X, Y and Z directions. Shock Test:...Conforms to JIS C 60068-2-27, Acceleration

Διαβάστε περισσότερα

C F E E E F FF E F B F F A EA C AEC

C F E E E F FF E F B F F A EA C AEC Proceedings of the International Multiconference on Computer Science and Information Technology pp. 767 774 ISBN 978-83-60810-27-9 ISSN 1896-7094 CFEEEFFFEFBFFAEAC AEC EEEDB DACDB DEEE EDBCD BACE FE DD

Διαβάστε περισσότερα

14.5mm 14.5mm

14.5mm 14.5mm This article has been accepted for publication in a future issue of this journal, but has not been fully edited. Content may change prior to final publication. Citation information: DOI 1.119/JETCAS.218.289582,

Διαβάστε περισσότερα

An Advanced Manipulation for Space Redundant Macro-Micro Manipulator System

An Advanced Manipulation for Space Redundant Macro-Micro Manipulator System 6 (5..9) 6 An Advanced Manipulation for Space Redundant Macro-Micro Manipulator System Kazuya Yoshida, Hiromitsu Watanabe * *Tohoku University : (Macro-micro manipulator system) (Flexible base), (Vibration

Διαβάστε περισσότερα

Μηχανική Μάθηση Hypothesis Testing

Μηχανική Μάθηση Hypothesis Testing ΕΛΛΗΝΙΚΗ ΔΗΜΟΚΡΑΤΙΑ ΠΑΝΕΠΙΣΤΗΜΙΟ ΚΡΗΤΗΣ Μηχανική Μάθηση Hypothesis Testing Γιώργος Μπορμπουδάκης Τμήμα Επιστήμης Υπολογιστών Procedure 1. Form the null (H 0 ) and alternative (H 1 ) hypothesis 2. Consider

Διαβάστε περισσότερα

Notes on the Open Economy

Notes on the Open Economy Notes on the Open Econom Ben J. Heijdra Universit of Groningen April 24 Introduction In this note we stud the two-countr model of Table.4 in more detail. restated here for convenience. The model is Table.4.

Διαβάστε περισσότερα

1.8 Paul Mother Wavelet Real Part Imaginary Part Magnitude.6.4 Amplitude.2.2.4.6.8 1 8 6 4 2 2 4 6 8 1 t .8.6 Real Part of Three Scaled Wavelets a = 1 a = 5 a = 1 1.2 1 Imaginary Part of Three Scaled Wavelets

Διαβάστε περισσότερα

Reminders: linear functions

Reminders: linear functions Reminders: linear functions Let U and V be vector spaces over the same field F. Definition A function f : U V is linear if for every u 1, u 2 U, f (u 1 + u 2 ) = f (u 1 ) + f (u 2 ), and for every u U

Διαβάστε περισσότερα

ΔΙΑΚΡΙΤΟΣ ΜΕΤΑΣΧΗΜΑΤΙΣΜΟΣ FOURIER - Discrete Fourier Transform - DFT -

ΔΙΑΚΡΙΤΟΣ ΜΕΤΑΣΧΗΜΑΤΙΣΜΟΣ FOURIER - Discrete Fourier Transform - DFT - ΔΙΑΚΡΙΤΟΣ ΜΕΤΑΣΧΗΜΑΤΙΣΜΟΣ FOURIER - Discrete Fourier Transform - DFT - Α. ΣΚΟΔΡΑΣ ΣΗΜΑΤΑ ΚΑΙ ΣΥΣΤΗΜΑΤΑ ΙΙ (22Y603) ΕΝΟΤΗΤΑ 4 ΔΙΑΛΕΞΗ 1 ΔΙΑΦΑΝΕΙΑ 1 Διαφορετικοί Τύποι Μετασχηµατισµού Fourier Α. ΣΚΟΔΡΑΣ

Διαβάστε περισσότερα

Example Sheet 3 Solutions

Example Sheet 3 Solutions Example Sheet 3 Solutions. i Regular Sturm-Liouville. ii Singular Sturm-Liouville mixed boundary conditions. iii Not Sturm-Liouville ODE is not in Sturm-Liouville form. iv Regular Sturm-Liouville note

Διαβάστε περισσότερα

Instruction Execution Times

Instruction Execution Times 1 C Execution Times InThisAppendix... Introduction DL330 Execution Times DL330P Execution Times DL340 Execution Times C-2 Execution Times Introduction Data Registers This appendix contains several tables

Διαβάστε περισσότερα

SCHOOL OF MATHEMATICAL SCIENCES G11LMA Linear Mathematics Examination Solutions

SCHOOL OF MATHEMATICAL SCIENCES G11LMA Linear Mathematics Examination Solutions SCHOOL OF MATHEMATICAL SCIENCES GLMA Linear Mathematics 00- Examination Solutions. (a) i. ( + 5i)( i) = (6 + 5) + (5 )i = + i. Real part is, imaginary part is. (b) ii. + 5i i ( + 5i)( + i) = ( i)( + i)

Διαβάστε περισσότερα

Derivation of Optical-Bloch Equations

Derivation of Optical-Bloch Equations Appendix C Derivation of Optical-Bloch Equations In this appendix the optical-bloch equations that give the populations and coherences for an idealized three-level Λ system, Fig. 3. on page 47, will be

Διαβάστε περισσότερα

Μοντέρνα Θεωρία Ελέγχου

Μοντέρνα Θεωρία Ελέγχου ΑΡΙΣΤΟΤΕΛΕΙΟ ΠΑΝΕΠΙΣΤΗΜΙΟ ΘΕΣΣΑΛΟΝΙΚΗΣ ΑΝΟΙΧΤΑ ΑΚΑΔΗΜΑΙΚΑ ΜΑΘΗΜΑΤΑ Ενότητα 12. Παρατηρησιμότητα Νίκος Καραμπετάκης Άδειες Χρήσης Το παρόν εκπαιδευτικό υλικό υπόκειται σε άδειες χρήσης Creative Commons.

Διαβάστε περισσότερα

Biostatistics for Health Sciences Review Sheet

Biostatistics for Health Sciences Review Sheet Biostatistics for Health Sciences Review Sheet http://mathvault.ca June 1, 2017 Contents 1 Descriptive Statistics 2 1.1 Variables.............................................. 2 1.1.1 Qualitative........................................

Διαβάστε περισσότερα

MULTILAYER CHIP VARISTOR JMV S & E Series: (SMD Surge Protection)

MULTILAYER CHIP VARISTOR JMV S & E Series: (SMD Surge Protection) INTRODUCTION Metal Oxide based chip varistors (JMVs) are used for transient suppression. JMVs have non-linear - behavior, which is similar to that of Zener Diode. Each grain in JMV exhibits small p-n junction

Διαβάστε περισσότερα

DESIGN OF MACHINERY SOLUTION MANUAL h in h 4 0.

DESIGN OF MACHINERY SOLUTION MANUAL h in h 4 0. DESIGN OF MACHINERY SOLUTION MANUAL -7-1! PROBLEM -7 Statement: Design a double-dwell cam to move a follower from to 25 6, dwell for 12, fall 25 and dwell for the remader The total cycle must take 4 sec

Διαβάστε περισσότερα

3o/B Mάθημα: Δικτύωμα / 2D-Truss in Batch

3o/B Mάθημα: Δικτύωμα / 2D-Truss in Batch ΥΠΟΛΟΓΙΣΤΙΚΕΣ ΜΕΘΟΔΟΙ ΣΤΙΣ ΚΑΤΑΣΚΕΥΕΣ 3o/B Mάθημα: Δικτύωμα / 2D-Truss in Batch Λεωνίδας Αλεξόπουλος, Επ. Καθηγητής Τομέας ΜΚ&ΑΕ leo@mail.ntua.gr, τηλ: 772-1666 Βοηθοί διδασκαλίας: Κανακάρης Γιώργος, Διδακτορικός

Διαβάστε περισσότερα

Thermistor (NTC /PTC)

Thermistor (NTC /PTC) ISO/TS16949 ISO 9001 ISO14001 2015 Thermistor (NTC /PTC) GNTC (Chip in Glass Thermistor) SMD NTC Thermistor SMD PTC Thermistor Radial type Thermistor Bare Chip Thermistor (Gold & silver Electrode) 9B-51L,

Διαβάστε περισσότερα

Estimation for ARMA Processes with Stable Noise. Matt Calder & Richard A. Davis Colorado State University

Estimation for ARMA Processes with Stable Noise. Matt Calder & Richard A. Davis Colorado State University Estimation for ARMA Processes with Stable Noise Matt Calder & Richard A. Davis Colorado State University rdavis@stat.colostate.edu 1 ARMA processes with stable noise Review of M-estimation Examples of

Διαβάστε περισσότερα

ExpIntegralE. Notations. Primary definition. Specific values. Traditional name. Traditional notation. Mathematica StandardForm notation

ExpIntegralE. Notations. Primary definition. Specific values. Traditional name. Traditional notation. Mathematica StandardForm notation ExpIntegralE Notations Traditional name Exponential integral E Traditional notation E Mathematica StandardForm notation ExpIntegralE, Primary definition 06.34.0.000.0 E t t t ; Re 0 Specific values Specialied

Διαβάστε περισσότερα

Διερεύνηση ακουστικών ιδιοτήτων Νεκρομαντείου Αχέροντα

Διερεύνηση ακουστικών ιδιοτήτων Νεκρομαντείου Αχέροντα Διερεύνηση ακουστικών ιδιοτήτων Νεκρομαντείου Αχέροντα Βασίλειος Α. Ζαφρανάς Παναγιώτης Σ. Καραμπατζάκης ΠΕΡΙΛΗΨΗ H εργασία αφορά μία σειρά μετρήσεων του χρόνου αντήχησης της υπόγειας κρύπτης του «Νεκρομαντείου»

Διαβάστε περισσότερα

5.6 evaluating, checking, comparing Chris Parrish July 3, 2016

5.6 evaluating, checking, comparing Chris Parrish July 3, 2016 5.6 evaluating, checking, comparing Chris Parrish July 3, 2016 Contents residuals 1 evaluating, checking, comparing 1 data..................................................... 1 model....................................................

Διαβάστε περισσότερα

6. MAXIMUM LIKELIHOOD ESTIMATION

6. MAXIMUM LIKELIHOOD ESTIMATION 6 MAXIMUM LIKELIHOOD ESIMAION [1] Maximum Likelihood Estimator (1) Cases in which θ (unknown parameter) is scalar Notational Clarification: From now on, we denote the true value of θ as θ o hen, view θ

Διαβάστε περισσότερα

Chapter 1 Introduction to Observational Studies Part 2 Cross-Sectional Selection Bias Adjustment

Chapter 1 Introduction to Observational Studies Part 2 Cross-Sectional Selection Bias Adjustment Contents Preface ix Part 1 Introduction Chapter 1 Introduction to Observational Studies... 3 1.1 Observational vs. Experimental Studies... 3 1.2 Issues in Observational Studies... 5 1.3 Study Design...

Διαβάστε περισσότερα

Hartree-Fock Theory. Solving electronic structure problem on computers

Hartree-Fock Theory. Solving electronic structure problem on computers Hartree-Foc Theory Solving electronic structure problem on computers Hartree product of non-interacting electrons mean field molecular orbitals expectations values one and two electron operators Pauli

Διαβάστε περισσότερα

Πανεπιστήμιο Κρήτης, Τμήμα Επιστήμης Υπολογιστών Άνοιξη 2009. HΥ463 - Συστήματα Ανάκτησης Πληροφοριών Information Retrieval (IR) Systems

Πανεπιστήμιο Κρήτης, Τμήμα Επιστήμης Υπολογιστών Άνοιξη 2009. HΥ463 - Συστήματα Ανάκτησης Πληροφοριών Information Retrieval (IR) Systems Πανεπιστήμιο Κρήτης, Τμήμα Επιστήμης Υπολογιστών Άνοιξη 2009 HΥ463 - Συστήματα Ανάκτησης Πληροφοριών Information Retrieval (IR) Systems Στατιστικά Κειμένου Text Statistics Γιάννης Τζίτζικας άλ ιάλεξη :

Διαβάστε περισσότερα

Dynamic types, Lambda calculus machines Section and Practice Problems Apr 21 22, 2016

Dynamic types, Lambda calculus machines Section and Practice Problems Apr 21 22, 2016 Harvard School of Engineering and Applied Sciences CS 152: Programming Languages Dynamic types, Lambda calculus machines Apr 21 22, 2016 1 Dynamic types and contracts (a) To make sure you understand the

Διαβάστε περισσότερα

Cable Systems - Postive/Negative Seq Impedance

Cable Systems - Postive/Negative Seq Impedance Cable Systems - Postive/Negative Seq Impedance Nomenclature: GMD GMR - geometrical mead distance between conductors; depends on construction of the T-line or cable feeder - geometric mean raduius of conductor

Διαβάστε περισσότερα

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 24/3/2007

ΚΥΠΡΙΑΚΗ ΕΤΑΙΡΕΙΑ ΠΛΗΡΟΦΟΡΙΚΗΣ CYPRUS COMPUTER SOCIETY ΠΑΓΚΥΠΡΙΟΣ ΜΑΘΗΤΙΚΟΣ ΔΙΑΓΩΝΙΣΜΟΣ ΠΛΗΡΟΦΟΡΙΚΗΣ 24/3/2007 Οδηγίες: Να απαντηθούν όλες οι ερωτήσεις. Όλοι οι αριθμοί που αναφέρονται σε όλα τα ερωτήματα μικρότεροι του 10000 εκτός αν ορίζεται διαφορετικά στη διατύπωση του προβλήματος. Αν κάπου κάνετε κάποιες υποθέσεις

Διαβάστε περισσότερα

Tridiagonal matrices. Gérard MEURANT. October, 2008

Tridiagonal matrices. Gérard MEURANT. October, 2008 Tridiagonal matrices Gérard MEURANT October, 2008 1 Similarity 2 Cholesy factorizations 3 Eigenvalues 4 Inverse Similarity Let α 1 ω 1 β 1 α 2 ω 2 T =......... β 2 α 1 ω 1 β 1 α and β i ω i, i = 1,...,

Διαβάστε περισσότερα

An Inventory of Continuous Distributions

An Inventory of Continuous Distributions Appendi A An Inventory of Continuous Distributions A.1 Introduction The incomplete gamma function is given by Also, define Γ(α; ) = 1 with = G(α; ) = Z 0 Z 0 Z t α 1 e t dt, α > 0, >0 t α 1 e t dt, α >

Διαβάστε περισσότερα

ΕΙΣΑΓΩΓΗ ΣΤΗ ΣΤΑΤΙΣΤΙΚΗ ΑΝΑΛΥΣΗ

ΕΙΣΑΓΩΓΗ ΣΤΗ ΣΤΑΤΙΣΤΙΚΗ ΑΝΑΛΥΣΗ ΕΙΣΑΓΩΓΗ ΣΤΗ ΣΤΑΤΙΣΤΙΚΗ ΑΝΑΛΥΣΗ ΕΛΕΝΑ ΦΛΟΚΑ Επίκουρος Καθηγήτρια Τµήµα Φυσικής, Τοµέας Φυσικής Περιβάλλοντος- Μετεωρολογίας ΓΕΝΙΚΟΙ ΟΡΙΣΜΟΙ Πληθυσµός Σύνολο ατόµων ή αντικειµένων στα οποία αναφέρονται

Διαβάστε περισσότερα

Second Order RLC Filters

Second Order RLC Filters ECEN 60 Circuits/Electronics Spring 007-0-07 P. Mathys Second Order RLC Filters RLC Lowpass Filter A passive RLC lowpass filter (LPF) circuit is shown in the following schematic. R L C v O (t) Using phasor

Διαβάστε περισσότερα

Summary of the model specified

Summary of the model specified Program: HLM 7 Hierarchical Linear and Nonlinear Modeling Authors: Stephen Raudenbush, Tony Bryk, & Richard Congdon Publisher: Scientific Software International, Inc. (c) 2010 techsupport@ssicentral.com

Διαβάστε περισσότερα

Computable error bounds for asymptotic expansions formulas of distributions related to gamma functions

Computable error bounds for asymptotic expansions formulas of distributions related to gamma functions Computable error bounds for asymptotic expansions formulas of distributions related to gamma functions Hirofumi Wakaki (Math. of Department, Hiroshima Univ.) 20.7. Hiroshima Statistical Group Meeting at

Διαβάστε περισσότερα

Operational Programme Education and Lifelong Learning. Continuing Education Programme for updating Knowledge of University Graduates:

Operational Programme Education and Lifelong Learning. Continuing Education Programme for updating Knowledge of University Graduates: Operational Programme Education and Lifelong Learning Continuing Education Programme for updating Knowledge of University Graduates: Modern Development in Offshore Structures 1 - SECTION 8.2 - GDM George

Διαβάστε περισσότερα

SÔntomec plhroforðec gia to glpsol (glpk)

SÔntomec plhroforðec gia to glpsol (glpk) SÔntomec plhroforðec gia to glpsol (glpk) gpol@di.uoa.gr Genikˆ gia to GLPK kai to glpsol Το GLPK (GNU Linear Programming Kit) είναι μια βιβλιοθήκη συναρτήσεων για τη γλώσσα C/C++ η οποία χρησιμοποιείται

Διαβάστε περισσότερα

Supplementary Appendix

Supplementary Appendix Supplementary Appendix Measuring crisis risk using conditional copulas: An empirical analysis of the 2008 shipping crisis Sebastian Opitz, Henry Seidel and Alexander Szimayer Model specification Table

Διαβάστε περισσότερα

Aquinas College. Edexcel Mathematical formulae and statistics tables DO NOT WRITE ON THIS BOOKLET

Aquinas College. Edexcel Mathematical formulae and statistics tables DO NOT WRITE ON THIS BOOKLET Aquinas College Edexcel Mathematical formulae and statistics tables DO NOT WRITE ON THIS BOOKLET Pearson Edexcel Level 3 Advanced Subsidiary and Advanced GCE in Mathematics and Further Mathematics Mathematical

Διαβάστε περισσότερα

Managing Economic Fluctuations. Managing Macroeconomic Fluctuations 1

Managing Economic Fluctuations. Managing Macroeconomic Fluctuations 1 Managing Economic Fluctuations -Keynesian macro: - -term nominal interest rates. - - P. - - P. Managing Macroeconomic Fluctuations 1 Review: New Keynesian Model -run macroeconomics: - π = γ (Y Y P ) +

Διαβάστε περισσότερα

Συστήματα Αυτόματου Ελέγχου

Συστήματα Αυτόματου Ελέγχου ΕΛΛΗΝΙΚΗ ΔΗΜΟΚΡΑΤΙΑ Ανώτατο Εκπαιδευτικό Ίδρυμα Πειραιά Τεχνολογικού Τομέα Συστήματα Αυτόματου Ελέγχου Ενότητα : Περιγραφή και Ανάλυση Συστημάτων Ελέγχου στο Χώρο Κατάστασης Aναστασία Βελώνη Τμήμα Η.Υ.Σ

Διαβάστε περισσότερα

Ψηφιακή Επεξεργασία Φωνής

Ψηφιακή Επεξεργασία Φωνής ΕΛΛΗΝΙΚΗ ΔΗΜΟΚΡΑΤΙΑ ΠΑΝΕΠΙΣΤΗΜΙΟ ΚΡΗΤΗΣ Ψηφιακή Επεξεργασία Φωνής Ενότητα 1η: Ψηφιακή Επεξεργασία Σήματος Στυλιανού Ιωάννης Τμήμα Επιστήμης Υπολογιστών CS578- Speech Signal Processing Lecture 1: Discrete-Time

Διαβάστε περισσότερα

bits and bytes q Ο υπολογιστής χρησιμοποιεί τη κύρια μνήμη για αποθήκευση δεδομένων

bits and bytes q Ο υπολογιστής χρησιμοποιεί τη κύρια μνήμη για αποθήκευση δεδομένων bits and bytes ΦΥΣ 145 - Διαλ.02 1 q Ο υπολογιστής χρησιμοποιεί τη κύρια μνήμη για αποθήκευση δεδομένων q Η μνήμη χωρίζεται σε words και κάθε word περιέχει τμήμα πληροφορίας q Ο αριθμός των words σε μια

Διαβάστε περισσότερα

INTERVAL ARITHMETIC APPLIED TO STRUCTURAL DESIGN OF UNCERTAIN MECHANICAL SYSTEMS

INTERVAL ARITHMETIC APPLIED TO STRUCTURAL DESIGN OF UNCERTAIN MECHANICAL SYSTEMS INTERVAL ARITHMETIC APPLIED TO STRUCTURAL DESIGN OF UNCERTAIN MECHANICAL SYSTEMS O. Dessombz, F.Thouverez J-P. Laîné, L.Jézéquel Laboratoire de Tribologie et Dynamique des Systèmes UMR CNRS 5513 École

Διαβάστε περισσότερα

MATHEMATICS. 1. If A and B are square matrices of order 3 such that A = -1, B =3, then 3AB = 1) -9 2) -27 3) -81 4) 81

MATHEMATICS. 1. If A and B are square matrices of order 3 such that A = -1, B =3, then 3AB = 1) -9 2) -27 3) -81 4) 81 1. If A and B are square matrices of order 3 such that A = -1, B =3, then 3AB = 1) -9 2) -27 3) -81 4) 81 We know that KA = A If A is n th Order 3AB =3 3 A. B = 27 1 3 = 81 3 2. If A= 2 1 0 0 2 1 then

Διαβάστε περισσότερα

ΥΠΟΛΟΓΙΣΤΙΚΕΣ ΜΕΘΟΔΟΙ ΣΤΙΣ ΚΑΤΑΣΚΕΥΕΣ

ΥΠΟΛΟΓΙΣΤΙΚΕΣ ΜΕΘΟΔΟΙ ΣΤΙΣ ΚΑΤΑΣΚΕΥΕΣ ΥΠΟΛΟΓΙΣΤΙΚΕΣ ΜΕΘΟΔΟΙ ΣΤΙΣ ΚΑΤΑΣΚΕΥΕΣ 3o/B Mάθημα: Δικτύωμα / 2D-Truss in Batch Λεωνίδας Αλεξόπουλος Βοηθοί διδασκαλίας: Κανακάρης Γιώργος, Καβαλόπουλος Νίκος Άδεια Χρήσης Το παρόν υλικό υπόκειται σε άδειες

Διαβάστε περισσότερα

Chapter 6: Systems of Linear Differential. be continuous functions on the interval

Chapter 6: Systems of Linear Differential. be continuous functions on the interval Chapter 6: Systems of Linear Differential Equations Let a (t), a 2 (t),..., a nn (t), b (t), b 2 (t),..., b n (t) be continuous functions on the interval I. The system of n first-order differential equations

Διαβάστε περισσότερα

Nachrichtentechnik I WS 2005/2006

Nachrichtentechnik I WS 2005/2006 Nachrichtentechnik I WS 2005/2006 1 Signals & Systems wt 10/2005 1 Overview (Signals & Systems) Signals: definition & classification properties basic signals Signal transformations Fourier transformation

Διαβάστε περισσότερα

Monetary Policy Design in the Basic New Keynesian Model

Monetary Policy Design in the Basic New Keynesian Model Monetary Policy Design in the Basic New Keynesian Model Jordi Galí CREI, UPF and Barcelona GSE June 216 Jordi Galí (CREI, UPF and Barcelona GSE) Monetary Policy Design June 216 1 / 12 The Basic New Keynesian

Διαβάστε περισσότερα

Notations. Primary definition. Specific values. General characteristics. Traditional name. Traditional notation. Mathematica StandardForm notation

Notations. Primary definition. Specific values. General characteristics. Traditional name. Traditional notation. Mathematica StandardForm notation KelvinKei Notations Traditional name Kelvin function of the second kind Traditional notation kei Mathematica StandardForm notation KelvinKei Primary definition 03.5.0.000.0 kei kei 0 Specific values Values

Διαβάστε περισσότερα

Handbook of Electrochemical Impedance Spectroscopy

Handbook of Electrochemical Impedance Spectroscopy Handbook of Electrochemical Impedance Spectroscopy Im Z u c T u c T Re Z CIRCUITS made of RESISTORS and INDUCTORS ER@SE/LEPMI J.-P. Diard, B. Le Gorrec, C. Montella Hosted by Bio-Logic @ www.bio-logic.info

Διαβάστε περισσότερα

m4.3 Chris Parrish June 16, 2016

m4.3 Chris Parrish June 16, 2016 m4.3 Chris Parrish June 16, 2016 Contents!Kung model 1 data..................................................... 1 scatterplot with ggplot2....................................... 2 model....................................................

Διαβάστε περισσότερα

IV. ANHANG 179. Anhang 178

IV. ANHANG 179. Anhang 178 Anhang 178 IV. ANHANG 179 1. Röntgenstrukturanalysen (Tabellen) 179 1.1. Diastereomer A (Diplomarbeit) 179 1.2. Diastereomer B (Diplomarbeit) 186 1.3. Aldoladdukt 5A 193 1.4. Aldoladdukt 13A 200 1.5. Aldoladdukt

Διαβάστε περισσότερα

CHAPTER 12: PERIMETER, AREA, CIRCUMFERENCE, AND 12.1 INTRODUCTION TO GEOMETRIC 12.2 PERIMETER: SQUARES, RECTANGLES,

CHAPTER 12: PERIMETER, AREA, CIRCUMFERENCE, AND 12.1 INTRODUCTION TO GEOMETRIC 12.2 PERIMETER: SQUARES, RECTANGLES, CHAPTER : PERIMETER, AREA, CIRCUMFERENCE, AND SIGNED FRACTIONS. INTRODUCTION TO GEOMETRIC MEASUREMENTS p. -3. PERIMETER: SQUARES, RECTANGLES, TRIANGLES p. 4-5.3 AREA: SQUARES, RECTANGLES, TRIANGLES p.

Διαβάστε περισσότερα

X-Y COUPLING GENERATION WITH AC/PULSED SKEW QUADRUPOLE AND ITS APPLICATION

X-Y COUPLING GENERATION WITH AC/PULSED SKEW QUADRUPOLE AND ITS APPLICATION X-Y COUPLING GENERATION WITH AC/PULSED SEW QUADRUPOLE AND ITS APPLICATION # Takeshi Nakamura # Japan Synchrotron Radiation Research Institute / SPring-8 Abstract The new method of x-y coupling generation

Διαβάστε περισσότερα

RECIPROCATING COMPRESSOR CALCULATION SHEET ISOTHERMAL COMPRESSION Gas properties, flowrate and conditions. Compressor Calculation Sheet

RECIPROCATING COMPRESSOR CALCULATION SHEET ISOTHERMAL COMPRESSION Gas properties, flowrate and conditions. Compressor Calculation Sheet RECIPRCATING CMPRESSR CALCULATIN SHEET ISTHERMAL CMPRESSIN Gas properties, flowrate and conditions 1 Gas name Air Item or symbol Quantity Unit Item or symbol Quantity Unit Formula 2 Suction pressure, ps

Διαβάστε περισσότερα

is like multiplying by the conversion factor of. Dividing by 2π gives you the

is like multiplying by the conversion factor of. Dividing by 2π gives you the Chapter Graphs of Trigonometric Functions Answer Ke. Radian Measure Answers. π. π. π. π. 7π. π 7. 70 8. 9. 0 0. 0. 00. 80. Multipling b π π is like multipling b the conversion factor of. Dividing b 0 gives

Διαβάστε περισσότερα

l 0 l 2 l 1 l 1 l 1 l 2 l 2 l 1 l p λ λ µ R N l 2 R N l 2 2 = N x i l p p R N l p N p = ( x i p ) 1 p i=1 l 2 l p p = 2 l p l 1 R N l 1 i=1 x 2 i 1 = N x i i=1 l p p p R N l 0 0 = {i x i 0} R

Διαβάστε περισσότερα

9.1 Introduction 9.2 Lags in the Error Term: Autocorrelation 9.3 Estimating an AR(1) Error Model 9.4 Testing for Autocorrelation 9.

9.1 Introduction 9.2 Lags in the Error Term: Autocorrelation 9.3 Estimating an AR(1) Error Model 9.4 Testing for Autocorrelation 9. 9.1 Inroducion 9.2 Lags in he Error Term: Auocorrelaion 9.3 Esimaing an AR(1) Error Model 9.4 Tesing for Auocorrelaion 9.5 An Inroducion o Forecasing: Auoregressive Models 9.6 Finie Disribued Lags 9.7

Διαβάστε περισσότερα