Matrix representation of a Neural Network

Size: px
Start display at page:

Download "Matrix representation of a Neural Network"

Transcription

1 Downloaded from orbit.dtu.dk on: May 01, 2018 Matrix representation of a Neural Network Christensen, Bjørn Klint Publication date: 2003 Document Version Publisher's PDF, also known as Version of record Link back to DTU Orbit Citation (APA): Christensen, B. K. (2003). Matrix representation of a Neural Network. Technical University of Denmark (DTU). General rights Copyright and moral rights for the publications made accessible in the public portal are retained by the authors and/or other copyright owners and it is a condition of accessing publications that users recognise and abide by the legal requirements associated with these rights. Users may download and print one copy of any publication from the public portal for the purpose of private study or research. You may not further distribute the material or use it for any profit-making activity or commercial gain You may freely distribute the URL identifying the publication in the public portal If you believe that this document breaches copyright please contact us providing details, and we will remove access to the work immediately and investigate your claim.

2 Matrix representation of a Neural Network by Bjørn Christensen June 2003 Contents 1 INTRODUCTION 2 2 THE WEIGHT MATRIX Feedforward Backpropagation Squared Error 7 3 REFERENCES 7 1

3 1 Introduction This paper describes the implementation of a three-layer feedforward backpropagation neural network. The paper does not explain feedforward, backpropagation or what a neural network is. It is assumed, that the reader knows all this. If not please read chapters 2, 8 and 9 in Parallel Distributed Processing, by David Rummelhart (Rummelhart 1986) for an easy-to-read introduction. What the paper does explain is how a matrix representation of a neural net allows for a very simple implementation. The matrix representation is introduced in (Rummelhart 1986, chapter 9), but only for a two-layer linear network and the feedforward algorithm. This paper develops the idea further to three-layer non-linear networks and the backpropagation algorithm. i0 h0 o0 i1 h1 o1 ii-1 hj-1 ok-1 ii=1 hj=1 input nodes hidden nodes output nodes Figure 1 Figure 1 shows the layout of a three-layer network. There are I input nodes, J hidden nodes and K output nodes all indexed from 0. Bias-node for the hidden nodes is called ii, and bias-node for the output nodes is called hj. 2

4 2 The Weight Matrix In the matrix representation the input, hidden and output nodes are represented by three vectors i, h and o respectively. The weights connecting each layer are represented by a matrix. V connects the input layer with the hidden layer, and W connects the hidden layer with the output layer. See Figure 2. w0,0 w0,1 w0,j-1 w0,j o0 w1,0 w1,1 w1,j-1 w1,j o1 input nodes i0 i1 ii-1 ii=1 wk-1,0 wk-1,1 wk-1,j-1 wk-1,j ok-1 output nodes v0,0 v0,1 v0,i-1 v0,i h0 v1,0 v1,1 v1,i-1 v1,i h1 vj-1,0 vj-1,1 vj-1,i-1 vj-1,i hj-1 hj=1 hidden nodes Figure 2 Definitions: i - input nodes vector, dimension = I, indexed by i[0,i-1] h - hidden nodes vector, dimension = J, indexed by j[0,j-1] o - output nodes vector, dimension = K, indexed by k[0,k-1] ib - input nodes vector incl bias, dimension = I+1, indexed by i[0,i] hb - hidden nodes vector incl bias, dimension = J+1, indexed by j[0,j] V weight matrix from Ib to h, dimension = J(I+1), V j,i weight ib i h j W weight matrix from hb to o, dimension = K(J+1),W k,j weight hb j o k Bold denotes a vector or a matrix in the text. 3

5 2.1 Feedforward The feedforward algorithm produces an output vector given an input vector. As described in (Callan 1999, chapter 1), the input to hidden node h j is I 1 (1) net j Vj, I iivji i0 The naming convention of Callan is changed to match the definitions in this paper which follows (Rummelhart 1986). Note that Callan has interchanged the indices in the weight matrix. The value of hidden node h j is h j f(netj) (2) Where f() is the activation function defined as 1 (3) f ( x) -x 1 e Using matrix-vector multiplication, the value of all hidden nodes h can be calculated in a single operation h F( V ib) (4) Where F() is the vector function that takes f() on all elements of it s argument. Similarly the output vector is calculated from o F( Whb) (5) ib and hb are produced from ib i ii for i0.. I1, ibi 1 (6) hb j hj for j 0.. J1, hbj (7) 1 4

6 2.2 Backpropagation The backpropagation algorithm calculates the changes of the weights based on the error between the output o as calculated the by the feedforward algorithm, and the desired target output value t. Definition: t - target vector, dimension = K, indexed by k[0,k-1] From equation 11 in (Rummelhart 1986, chapter 8), we have the change of each weight: ΔWkj ηδkhj (8) Where is the learning rate, k is the error signal form output node o k, and hj is the value of node h j. This formula applys to all weights in the network. The error signal from the output layer and the hidden layer are calculated differently. Rummelhart defines the error signal as follows Error signal from output node k δok ok(1 ok)(tk ok) Error signal from hidden node j K-1 (9) (10) δh j h j(1 h j) δokwkj Definition: o- error signal from output nodes dimension = K, indexed by k[0,k-1] h- error signal from hidden nodes dimension = J, indexed by j[0,j-1] k0 Now we are ready to calculate the weight change W for all weights in a singe operation: ΔW W0,0 W0,1 W0, J - 1 W0, J (11) η W1,0 W1,1 W1, J - 1 W1, J WK - 1,0 WK - 1,1 WK - 1, J - 1 WK - 1, J δo0h0 δo0h1 δo0hj - 1 δo0hj η δo1h 0 δo1h 1 δo1h J - 1 δo1h J - 1h 0-1h1-1hJ - 1-1hJ δo0 η δo1 h 0-1 h1 hj - 1 hj η δo hb So W is times the outer product of o and hb. is the operator for the outer product. Similarly for V we get Δ V ηδh ib (12) 5

7 We need to express o and h in vector form. Let us define a vector multiplication operator % that multiplies the components of vector x and y as follows: 1* 1 % 2* 2 x x x y y (13) x y n* yn Calculating o is easy: δo o% ( 1 o) %( t o) (14) Where 1 is a vector of 1 s with same dimension as o. Calculating h requires a little more work. Let us define a vector S as: T s W δo (15) W T is the transpose of W. Expanding W and o gives us: T W W W W δo (16) 0,0 0,1 0, J - 1 0, J 0 s W1,0 W1,1 W1, J - 1 W1, J δo1 WK - 1,0 WK - 1,1 WK - 1, J - 1 WK - 1, J - 1 W0,0 W1,0 WK - 1,0 δo0 W0,1 W1,1 WK - 1,1 δo1 W0, J - 1 W1, J - 1 WK - 1, J W0, J W1, J WK - 1, J δo0w0,0 δo1w1, WK - 1,0... δo0w0,1 δo1w1,1-1wk - 1,1 δo0w0, J - 1 δo1w1, J WK - 1, J - 1 δo0w0, J δo1w1, J WK - 1, J s0 K-1 s1 where sj δokwkj sj - 1 k0 sj The component s j is operand in the error signal h j. Note that we do not need an error signal from h J since it is a bias node. Therefore we skip the last component of s, and create a vector s defined as: s j s j for j0.. J1 (17) Dimension of s is J. Finally we can write h as: δh h% (1 h) % s (18) Here 1 has same dimension as h. Let us sum up the important equations of the backpropagation algorithm: Error signal from output nodes δ o o% ( 1 o) %( t o) (19) Changes of weights connected to output nodes W η δo hb (20) Propagated errors from output nodes T s W δo (21) Error signal from hidden nodes δh h% (1 h) % s (22) Changes of weights connected to hidden nodes Δ V ηδh ib (23) 6

8 2.3 Squared Error The squared error is a measure of the correctness of the network. It is calculated for each input pattern p. Rummelhart defines the squared error as: K E p (tk ok) 2 k0 In vector notation using the inner product this is 1 Ep (t o) (t o) 2 (24) (25) Summing the squared errors for all patterns, we get the squared error E for an epoch n (26) E Ep p1 Where n is the number of patterns in the training set. 3 References Rummelhart 1986 Callan 1999 Parallel Distributed Programming: Explorations in the Microstructure of Cognition. Vol 1 David E Rummelhart, James L McClelland MIT-press 1986 The Essence of Nearal Networks Robert Callan Prentice Hall

Modelling Salmonella transfer during grinding of meat

Modelling Salmonella transfer during grinding of meat Downloaded from orbit.dtu.dk on: Nov 24, 2018 Modelling Salmonella transfer during grinding of meat Hansen, Tina Beck Publication date: 2017 Document Version Publisher's PDF, also known as Version of record

More information

Lidar calibration What s the problem?

Lidar calibration What s the problem? Downloaded from orbit.dtu.dk on: Feb 05, 2018 Lidar calibration What s the problem? Courtney, Michael Publication date: 2015 Document Version Peer reviewed version Link back to DTU Orbit Citation (APA):

More information

A Note on Powers in Finite Fields

A Note on Powers in Finite Fields Downloaded from orbit.dtu.dk on: Jul 11, 2018 A Note on Powers in Finite Fields Aabrandt, Andreas; Hansen, Vagn Lundsgaard Published in: International Journal of Mathematical Education in Science and Technology

More information

The dipole moment of a wall-charged void in a bulk dielectric

The dipole moment of a wall-charged void in a bulk dielectric Downloaded from orbit.dtu.dk on: Dec 17, 2017 The dipole moment of a wall-charged void in a bulk dielectric McAllister, Iain Wilson Published in: Proceedings of the Conference on Electrical Insulation

More information

An Equivalent Source Method for Modelling the Lithospheric Magnetic Field Using Satellite and Airborne Magnetic Data

An Equivalent Source Method for Modelling the Lithospheric Magnetic Field Using Satellite and Airborne Magnetic Data Downloaded from orbit.dtu.dk on: Oct 03, 2018 An Equivalent Source Method for Modelling the Lithospheric Magnetic Field Using Satellite and Airborne Magnetic Data Kother, Livia Kathleen; D. Hammer, Magnus;

More information

Reducing Uncertainty of Near-shore wind resource Estimates (RUNE) using wind lidars and mesoscale models

Reducing Uncertainty of Near-shore wind resource Estimates (RUNE) using wind lidars and mesoscale models Downloaded from orbit.dtu.dk on: Dec 16, 2018 Reducing Uncertainty of Near-shore wind resource Estimates (RUNE) using wind lidars and mesoscale models Floors, Rogier Ralph; Vasiljevic, Nikola; Lea, Guillaume;

More information

Optimizing Reliability using BECAS - an Open-Source Cross Section Analysis Tool

Optimizing Reliability using BECAS - an Open-Source Cross Section Analysis Tool Downloaded from orbit.dtu.dk on: Dec 20, 2017 Optimizing Reliability using BECAS - an Open-Source Cross Section Analysis Tool Bitsche, Robert; Blasques, José Pedro Albergaria Amaral Publication date: 2012

More information

Kommerciel arbejde med WAsP

Kommerciel arbejde med WAsP Downloaded from orbit.dtu.dk on: Dec 19, 2017 Kommerciel arbejde med WAsP Mortensen, Niels Gylling Publication date: 2002 Document Version Peer reviewed version Link back to DTU Orbit Citation (APA): Mortensen,

More information

Accelerating interior point methods with GPUs for smart grid systems

Accelerating interior point methods with GPUs for smart grid systems Downloaded from orbit.dtu.dk on: Dec 18, 2017 Accelerating interior point methods with GPUs for smart grid systems Gade-Nielsen, Nicolai Fog Publication date: 2011 Document Version Publisher's PDF, also

More information

Numerical modeling of the conduction and radiation heating in precision glass moulding

Numerical modeling of the conduction and radiation heating in precision glass moulding Downloaded from orbit.dtu.dk on: May 02, 2018 Numerical modeling of the conduction and radiation heating in precision glass moulding Sarhadi, Ali; Hattel, Jesper Henri; Hansen, Hans Nørgaard; Tutum, Cem

More information

Global Wind Atlas validation and uncertainty

Global Wind Atlas validation and uncertainty Downloaded from orbit.dtu.dk on: Nov 26, 20 Global Wind Atlas validation and uncertainty Mortensen, Niels Gylling; Davis, Neil; Badger, Jake; Hahmann, Andrea N. Publication date: 20 Document Version Publisher's

More information

Reflection of sound from finite-size plane and curved surfaces

Reflection of sound from finite-size plane and curved surfaces Downloaded from orbit.dtu.dk on: Sep, 08 Reflection of sound from finite-size plane and curved surfaces Rindel, Jens Holger Published in: Journal of the Acoustical Society of America Publication date:

More information

Steady State Comparisons HAWC2 v12.2 vs HAWCStab2 v2.12

Steady State Comparisons HAWC2 v12.2 vs HAWCStab2 v2.12 Downloaded from orbit.dtu.dk on: Jan 29, 219 Steady State Comparisons v12.2 vs v2.12 Verelst, David Robert; Hansen, Morten Hartvig; Pirrung, Georg Publication date: 216 Document Version Publisher's PDF,

More information

On numerical evaluation of two-dimensional phase integrals

On numerical evaluation of two-dimensional phase integrals Downloaded from orbit.dtu.dk on: Nov 28, 2018 On numerical evaluation of two-dimensional phase integrals Lessow, H.; Rusch, W.; Schjær-Jacobsen, Hans Published in: E E E Transactions on Antennas and Propagation

More information

Optimal acid digestion for multi-element analysis of different waste matrices

Optimal acid digestion for multi-element analysis of different waste matrices Downloaded from orbit.dtu.dk on: Sep 06, 2018 Optimal acid digestion for multi-element analysis of different waste matrices Götze, Ramona; Astrup, Thomas Fruergaard Publication date: 2014 Document Version

More information

The Wien Bridge Oscillator Family

The Wien Bridge Oscillator Family Downloaded from orbit.dtu.dk on: Dec 29, 207 The Wien Bridge Oscillator Family Lindberg, Erik Published in: Proceedings of the ICSES-06 Publication date: 2006 Link back to DTU Orbit Citation APA): Lindberg,

More information

Dynamic Effects of Diabatization in Distillation Columns

Dynamic Effects of Diabatization in Distillation Columns Downloaded from orbit.dtu.dk on: Dec 27, 2018 Dynamic Effects of Diabatization in Distillation Columns Bisgaard, Thomas Publication date: 2012 Document Version Publisher's PDF, also known as Version of

More information

Validation of Boundary Layer Winds from WRF Mesoscale Forecasts over Denmark

Validation of Boundary Layer Winds from WRF Mesoscale Forecasts over Denmark Downloaded from orbit.dtu.dk on: Dec 14, 2018 Validation of Boundary Layer Winds from WRF Mesoscale Forecasts over Denmark Hahmann, Andrea N.; Pena Diaz, Alfredo Published in: EWEC 2010 Proceedings online

More information

Radioactivity in the Risø District January-June 2014

Radioactivity in the Risø District January-June 2014 Downloaded from orbit.dtu.dk on: Dec 20, 2017 Radioactivity in the Risø District January-June 2014 Nielsen, Sven Poul; Andersson, Kasper Grann; Miller, Arne Publication date: 2014 Document Version Publisher's

More information

Radioactivity in the Risø District July-December 2013

Radioactivity in the Risø District July-December 2013 Downloaded from orbit.dtu.dk on: Jan 02, 2019 Radioactivity in the Risø District July-December 2013 Nielsen, Sven Poul; Andersson, Kasper Grann; Miller, Arne Publication date: 2014 Document Version Publisher's

More information

Realtime 3D stress measurement in curing epoxy packaging

Realtime 3D stress measurement in curing epoxy packaging Downloaded from orbit.dtu.dk on: Dec 17, 2017 Realtime 3D stress measurement in curing epoxy packaging Richter, Jacob; Hyldgård, A.; Birkelund, Karen; Hansen, Ole; Thomsen, Erik Vilain Published in: International

More information

Single Shooting and ESDIRK Methods for adjoint-based optimization of an oil reservoir

Single Shooting and ESDIRK Methods for adjoint-based optimization of an oil reservoir Downloaded from orbit.dtu.dk on: Dec 2, 217 Single Shooting and ESDIRK Methods for adjoint-based optimization of an oil reservoir Capolei, Andrea; Völcker, Carsten; Frydendall, Jan; Jørgensen, John Bagterp

More information

Sound absorption properties of a perforated plate and membrane ceiling element Nilsson, Anders C.; Rasmussen, Birgit

Sound absorption properties of a perforated plate and membrane ceiling element Nilsson, Anders C.; Rasmussen, Birgit Aalborg Universitet Sound absorption properties of a perforated plate and membrane ceiling element Nilsson, Anders C.; Rasmussen, Birgit Published in: Proceedings of Inter-Noise 1983 Publication date:

More information

Aalborg Universitet. Lecture 14 - Introduction to experimental work Kramer, Morten Mejlhede. Publication date: 2015

Aalborg Universitet. Lecture 14 - Introduction to experimental work Kramer, Morten Mejlhede. Publication date: 2015 Aalborg Universitet Lecture 14 - Introduction to experimental work Kramer, Morten Mejlhede Publication date: 2015 Document Version Publisher's PDF, also known as Version of record Link to publication from

More information

Determination of packaging induced 3D stress utilizing a piezocoefficient mapping device

Determination of packaging induced 3D stress utilizing a piezocoefficient mapping device Downloaded from orbit.dtu.dk on: Dec 15, 2018 Determination of packaging induced 3D stress utilizing a piezocoefficient mapping device Richter, Jacob; Hyldgård, A.; Birkelund, Karen; Arnoldus, Morten Berg;

More information

Design of Robust AMB Controllers for Rotors Subjected to Varying and Uncertain Seal Forces

Design of Robust AMB Controllers for Rotors Subjected to Varying and Uncertain Seal Forces Downloaded from orbit.dtu.dk on: Nov 9, 218 Design of Robust AMB Controllers for Rotors Subjected to Varying and Uncertain Seal Forces Lauridsen, Jonas Skjødt; Santos, Ilmar Published in: Mechanical Engineering

More information

Generating the optimal magnetic field for magnetic refrigeration

Generating the optimal magnetic field for magnetic refrigeration Downloaded from orbit.dtu.dk on: Oct 17, 018 Generating the optimal magnetic field for magnetic refrigeration Bjørk, Rasmus; Insinga, Andrea Roberto; Smith, Anders; Bahl, Christian Published in: Proceedings

More information

Impact of the interfaces for wind and wave modeling - interpretation using COAWST, SAR and point measurements

Impact of the interfaces for wind and wave modeling - interpretation using COAWST, SAR and point measurements Downloaded from orbit.dtu.dk on: Oct 21, 2018 Impact of the interfaces for wind and wave modeling - interpretation using COAWST, SAR and point measurements Larsén, Xiaoli Guo; Du, Jianting; Bolanos, Rodolfo;

More information

Room Allocation Optimisation at the Technical University of Denmark

Room Allocation Optimisation at the Technical University of Denmark Downloaded from orbit.dtu.dk on: Mar 13, 2018 Room Allocation Optimisation at the Technical University of Denmark Bagger, Niels-Christian Fink; Larsen, Jesper; Stidsen, Thomas Jacob Riis Published in:

More information

Simulating wind energy resources with mesoscale models: Intercomparison of stateof-the-art

Simulating wind energy resources with mesoscale models: Intercomparison of stateof-the-art Downloaded from orbit.dtu.dk on: Nov 01, 2018 Simulating wind energy resources with mesoscale models: Intercomparison of stateof-the-art models Olsen, Bjarke Tobias; Hahmann, Andrea N.; Sempreviva, Anna

More information

Prediction of airfoil performance at high Reynolds numbers.

Prediction of airfoil performance at high Reynolds numbers. Downloaded from orbit.dtu.dk on: Nov 04, 2018 Prediction of airfoil performance at high Reynolds numbers. Sørensen, Niels N.; Zahle, Frederik; Michelsen, Jess Publication date: 2014 Document Version Publisher's

More information

A note on non-periodic tilings of the plane

A note on non-periodic tilings of the plane A note on non-periodic tilings of the plane de Bruijn, N.G. Published: 01/01/1985 Document Version Publisher s PDF, also known as Version of Record (includes final page, issue and volume numbers) Please

More information

Validity of PEC Approximation for On-Body Propagation

Validity of PEC Approximation for On-Body Propagation Downloaded from orbit.dtu.dk on: Nov, 208 Validity of PEC Approximation for On-Body Propagation Kammersgaard, Nikolaj Peter Brunvoll; Kvist, Søren Helstrup; Thaysen, Jesper; Jakobsen, Kaj Bjarne Published

More information

The colpitts oscillator family

The colpitts oscillator family Downloaded from orbit.dtu.dk on: Oct 17, 2018 The colpitts oscillator family Lindberg, Erik; Murali, K.; Tamasevicius, A. Publication date: 2008 Document Version Publisher's PDF, also known as Version

More information

Dynamic Asset Allocation - Identifying Regime Shifts in Financial Time Series to Build Robust Portfolios

Dynamic Asset Allocation - Identifying Regime Shifts in Financial Time Series to Build Robust Portfolios Downloaded from orbit.dtu.dk on: Jan 22, 2019 Dynamic Asset Allocation - Identifying Regime Shifts in Financial Time Series to Build Robust Portfolios Nystrup, Peter Publication date: 2018 Document Version

More information

Crack Tip Flipping: A New Phenomenon yet to be Resolved in Ductile Plate Tearing

Crack Tip Flipping: A New Phenomenon yet to be Resolved in Ductile Plate Tearing Downloaded from orbit.dtu.dk on: Jan 06, 2019 Crack Tip Flipping: A New Phenomenon yet to be Resolved in Ductile Plate Tearing Nielsen, Kim Lau Published in: Proceedings of the 30th Nordic Seminar on Computational

More information

The M/G/1 FIFO queue with several customer classes

The M/G/1 FIFO queue with several customer classes The M/G/1 FIFO queue with several customer classes Boxma, O.J.; Takine, T. Published: 01/01/2003 Document Version Publisher s PDF, also known as Version of Record (includes final page, issue and volume

More information

Design possibilities for impact noise insulation in lightweight floors A parameter study

Design possibilities for impact noise insulation in lightweight floors A parameter study Downloaded from orbit.dtu.dk on: Dec 23, 218 Design possibilities for impact noise insulation in lightweight floors A parameter study Brunskog, Jonas; Hammer, Per Published in: Euronoise Publication date:

More information

Comparisons of winds from satellite SAR, WRF and SCADA to characterize coastal gradients and wind farm wake effects at Anholt wind farm

Comparisons of winds from satellite SAR, WRF and SCADA to characterize coastal gradients and wind farm wake effects at Anholt wind farm Downloaded from orbit.dtu.dk on: Dec 10, 2018 Comparisons of winds from satellite SAR, WRF and SCADA to characterize coastal gradients and wind farm wake effects at Anholt wind farm Hasager, Charlotte

More information

Potential solution for rain erosion of wind turbine blades

Potential solution for rain erosion of wind turbine blades Downloaded from orbit.dtu.dk on: Jun 28, 2018 Potential solution for rain erosion of wind turbine blades Hasager, Charlotte Bay; Bech, Jakob Ilsted; Kusano, Yukihiro; Sjöholm, Mikael; Mikkelsen, Torben

More information

Benchmarking of optimization methods for topology optimization problems

Benchmarking of optimization methods for topology optimization problems Downloaded from orbit.dtu.dk on: Feb, 18 Benchmarking of optimization methods for topology optimization problems Rojas Labanda, Susana; Stolpe, Mathias Publication date: 14 Document Version Peer reviewed

More information

Application of mesoscale models with wind farm parametrisations in EERA-DTOC

Application of mesoscale models with wind farm parametrisations in EERA-DTOC Downloaded from orbit.dtu.dk on: Dec 21, 2017 Application of mesoscale models with wind farm parametrisations in EERA-DTOC Volker, Patrick; Badger, Jake; Hahmann, Andrea N.; Hansen, S.; Badger, Merete;

More information

Reflection and absorption coefficients for use in room acoustic simulations

Reflection and absorption coefficients for use in room acoustic simulations Downloaded from orbit.dtu.dk on: May 1, 018 Reflection and absorption coefficients for use in room acoustic simulations Jeong, Cheol-Ho Published in: Proceedings of Spring Meeting of the Acoustical Society

More information

Multiple Scenario Inversion of Reflection Seismic Prestack Data

Multiple Scenario Inversion of Reflection Seismic Prestack Data Downloaded from orbit.dtu.dk on: Nov 28, 2018 Multiple Scenario Inversion of Reflection Seismic Prestack Data Hansen, Thomas Mejer; Cordua, Knud Skou; Mosegaard, Klaus Publication date: 2013 Document Version

More information

Diffusion of sulfuric acid in protective organic coatings

Diffusion of sulfuric acid in protective organic coatings Downloaded from orbit.dtu.dk on: Nov 03, 2018 Diffusion of sulfuric acid in protective organic coatings Wang, Ting; Møller, Victor Buhl; Dam-Johansen, Kim; Frankær, Sarah M.; Kiil, Søren Publication date:

More information

Graphs with given diameter maximizing the spectral radius van Dam, Edwin

Graphs with given diameter maximizing the spectral radius van Dam, Edwin Tilburg University Graphs with given diameter maximizing the spectral radius van Dam, Edwin Published in: Linear Algebra and its Applications Publication date: 2007 Link to publication Citation for published

More information

Plane Wave Medical Ultrasound Imaging Using Adaptive Beamforming

Plane Wave Medical Ultrasound Imaging Using Adaptive Beamforming Downloaded from orbit.dtu.dk on: Jul 14, 2018 Plane Wave Medical Ultrasound Imaging Using Adaptive Beamforming Voxen, Iben Holfort; Gran, Fredrik; Jensen, Jørgen Arendt Published in: Proceedings of 5th

More information

Wake decay constant for the infinite wind turbine array Application of asymptotic speed deficit concept to existing engineering wake model

Wake decay constant for the infinite wind turbine array Application of asymptotic speed deficit concept to existing engineering wake model Downloaded from orbit.dtu.dk on: Jul 22, 208 Wake decay constant for the infinite wind turbine array Application of asymptotic speed deficit concept to existing engineering wake model Rathmann, Ole Steen;

More information

Validation and comparison of numerical wind atlas methods: the South African example

Validation and comparison of numerical wind atlas methods: the South African example Downloaded from orbit.dtu.dk on: Jul 18, 2018 Validation and comparison of numerical wind atlas methods: the South African example Hahmann, Andrea N.; Badger, Jake; Volker, Patrick; Nielsen, Joakim Refslund;

More information

Space charge fields in DC cables

Space charge fields in DC cables Downloaded from orbit.dtu.dk on: Sep 25, 2018 Space charge fields in DC cables McAllister, Iain Wilson; Crichton - Fratrådt, George C; Pedersen, Aage Published in: Conference Record of the IEEE International

More information

Exposure Buildup Factors for Heavy Metal Oxide Glass: A Radiation Shield

Exposure Buildup Factors for Heavy Metal Oxide Glass: A Radiation Shield Downloaded from orbit.dtu.dk on: Jan 16, 2019 Exposure Buildup Factors for Heavy Metal Oxide Glass: A Radiation Shield Manonara, S. R.; Hanagodimath, S. M.; Gerward, Leif; Mittal, K. C. Published in: Journal

More information

Berøringsløs optisk måling af gassammensætning ved UV og IR spektroskopi

Berøringsløs optisk måling af gassammensætning ved UV og IR spektroskopi Downloaded from orbit.dtu.dk on: Dec 21 2017 Berøringsløs optisk måling af gassammensætning ved UV og IR spektroskopi Clausen Sønnik Publication date: 2008 Document Version Publisher's PDF also known as

More information

Vindkraftmeteorologi - metoder, målinger og data, kort, WAsP, WaSPEngineering,

Vindkraftmeteorologi - metoder, målinger og data, kort, WAsP, WaSPEngineering, Downloaded from orbit.dtu.dk on: Dec 19, 2017 Vindkraftmeteorologi - metoder, målinger og data, kort, WAsP, WaSPEngineering, meso-scale metoder, prediction, vindatlasser worldwide, energiproduktionsberegninger,

More information

On the Einstein-Stern model of rotational heat capacities

On the Einstein-Stern model of rotational heat capacities Downloaded from orbit.dtu.dk on: Jan 06, 2018 On the Einstein-Stern model of rotational heat capacities Dahl, Jens Peder Published in: Journal of Chemical Physics Link to article, DOI: 10.1063/1.77766

More information

Measurements of the angular distribution of diffuse irradiance

Measurements of the angular distribution of diffuse irradiance Downloaded from orbit.dtu.dk on: Nov 02, 2018 Measurements of the angular distribution of diffuse irradiance Nielsen, Elsabet Nomonde Noma; Nielsen, Kristian Pagh ; Dragsted, Janne; Furbo, Simon Published

More information

Proving in the Isabelle Proof Assistant that the Set of Real Numbers is not Countable

Proving in the Isabelle Proof Assistant that the Set of Real Numbers is not Countable Downloaded from orbit.dtu.dk on: Mar 18, 2019 Proving in the Isabelle Proof Assistant that the Set of Real Numbers is not Countable Villadsen, Jørgen Publication date: 2018 Document Version Publisher's

More information

A beam theory fracture mechanics approach for strength analysis of beams with a hole

A beam theory fracture mechanics approach for strength analysis of beams with a hole A beam theory fracture mechanics approach for strength analysis of beams with a hole Danielsson, Henrik; Gustafsson, Per-Johan Published in: International Network on Timber Engineering Research - Proceedings

More information

Tilburg University. Strongly Regular Graphs with Maximal Energy Haemers, W. H. Publication date: Link to publication

Tilburg University. Strongly Regular Graphs with Maximal Energy Haemers, W. H. Publication date: Link to publication Tilburg University Strongly Regular Graphs with Maximal Energy Haemers, W. H. Publication date: 2007 Link to publication Citation for published version (APA): Haemers, W. H. (2007). Strongly Regular Graphs

More information

Battling Bluetongue and Schmallenberg virus Local scale behavior of transmitting vectors

Battling Bluetongue and Schmallenberg virus Local scale behavior of transmitting vectors Downloaded from orbit.dtu.dk on: Sep 10, 2018 Local scale behavior of transmitting vectors Stockmarr, Anders; Kirkeby, Carsten Thure; Bødker, Rene Publication date: 2015 Link back to DTU Orbit Citation

More information

Higher-order spectral modelling of the diffraction force around a vertical circular cylinder

Higher-order spectral modelling of the diffraction force around a vertical circular cylinder Downloaded from orbit.dtu.dk on: Apr 10, 2018 Higher-order spectral modelling of the diffraction force around a vertical circular cylinder Bredmose, Henrik; Andersen, Søren Juhl Publication date: 2017

More information

Polydiagnostic study on a surfatron plasma at atmospheric pressure

Polydiagnostic study on a surfatron plasma at atmospheric pressure Polydiagnostic study on a surfatron plasma at atmospheric pressure Citation for published version (APA): Palomares, J. M., Iordanova, E. I., Gamero, A., Sola, A., & Mullen, van der, J. J. A. M. (2009).

More information

Aalborg Universitet. Land-use modelling by cellular automata Hansen, Henning Sten. Published in: NORDGI : Nordic Geographic Information

Aalborg Universitet. Land-use modelling by cellular automata Hansen, Henning Sten. Published in: NORDGI : Nordic Geographic Information Aalborg Universitet Land-use modelling by cellular automata Hansen, Henning Sten Published in: NORDGI : Nordic Geographic Information Publication date: 2006 Document Version Publisher's PDF, also known

More information

A systematic methodology for controller tuning in wastewater treatment plants

A systematic methodology for controller tuning in wastewater treatment plants Downloaded from orbit.dtu.dk on: Dec 2, 217 A systematic methodology for controller tuning in wastewater treatment plants Mauricio Iglesias, Miguel; Jørgensen, Sten Bay; Sin, Gürkan Publication date: 212

More information

A Blue Lagoon Function

A Blue Lagoon Function Downloaded from orbit.dt.dk on: Oct 11, 2018 A Ble Lagoon Fnction Markorsen, Steen Pblication date: 2007 Link back to DTU Orbit Citation (APA): Markorsen, S., (2007). A Ble Lagoon Fnction General rights

More information

COMPARISON OF THERMAL HAND MODELS AND MEASUREMENT SYSTEMS

COMPARISON OF THERMAL HAND MODELS AND MEASUREMENT SYSTEMS COMPARISON OF THERMAL HAND MODELS AND MEASUREMENT SYSTEMS Kuklane, Kalev Published in: [Host publication title missing] Published: 2014-01-01 Link to publication Citation for published version (APA): Kuklane,

More information

Advantages and Challenges of Superconducting Wind Turbine Generators

Advantages and Challenges of Superconducting Wind Turbine Generators Downloaded from orbit.dtu.dk on: Apr 10, 2018 Advantages and Challenges of Superconducting Wind Turbine Generators Jensen, Bogi Bech; Mijatovic, Nenad; Abrahamsen, Asger Bech Publication date: 2012 Link

More information

Multi (building)physics modeling

Multi (building)physics modeling Multi (building)physics modeling van Schijndel, A.W.M. Published: 01/01/2010 Document Version Publisher s PDF, also known as Version of Record (includes final page, issue and volume numbers) Please check

More information

Application of the wind atlas for Egypt

Application of the wind atlas for Egypt Downloaded from orbit.dtu.dk on: Dec 19, 2017 Application of the wind atlas for Egypt Mortensen, Niels Gylling Publication date: 2005 Document Version Peer reviewed version Link back to DTU Orbit Citation

More information

Solar radiation and thermal performance of solar collectors for Denmark

Solar radiation and thermal performance of solar collectors for Denmark Downloaded from orbit.dtu.dk on: Feb 01, 2018 Solar radiation and thermal performance of solar collectors for Denmark Dragsted, Janne; Furbo, Simon Publication date: 2012 Document Version Publisher's PDF,

More information

Strongly 2-connected orientations of graphs

Strongly 2-connected orientations of graphs Downloaded from orbit.dtu.dk on: Jul 04, 2018 Strongly 2-connected orientations of graphs Thomassen, Carsten Published in: Journal of Combinatorial Theory. Series B Link to article, DOI: 10.1016/j.jctb.2014.07.004

More information

Alkali Release from Typical Danish Aggregates to Potential ASR Reactive Concrete

Alkali Release from Typical Danish Aggregates to Potential ASR Reactive Concrete Downloaded from orbit.dtu.dk on: Nov 30, 2018 Alkali Release from Typical Danish Aggregates to Potential ASR Reactive Concrete Thomsen, Hans Christian Brolin; Grelk, Bent; Barbosa, Ricardo Antonio; Hansen,

More information

A comparison study of the two-bladed partial pitch turbine during normal operation and an extreme gust conditions

A comparison study of the two-bladed partial pitch turbine during normal operation and an extreme gust conditions Downloaded from orbit.dtu.dk on: Jul 12, 2018 A comparison study of the two-bladed partial pitch turbine during normal operation and an extreme gust conditions Kim, Taeseong; Pedersen, Mads Mølgaard; Larsen,

More information

A Trust-region-based Sequential Quadratic Programming Algorithm

A Trust-region-based Sequential Quadratic Programming Algorithm Downloaded from orbit.dtu.dk on: Oct 19, 2018 A Trust-region-based Sequential Quadratic Programming Algorithm Henriksen, Lars Christian; Poulsen, Niels Kjølstad Publication date: 2010 Document Version

More information

Determination of the minimum size of a statistical representative volume element from a fibre-reinforced composite based on point pattern statistics

Determination of the minimum size of a statistical representative volume element from a fibre-reinforced composite based on point pattern statistics Downloaded from orbit.dtu.dk on: Dec 04, 2018 Determination of the minimum size of a statistical representative volume element from a fibre-reinforced composite based on point pattern statistics Hansen,

More information

Citation (APA): Holm, E., Frøsig, L., & Sidhu, R. (Eds.) (2006). Theory of sampling. (NKS-122).

Citation (APA): Holm, E., Frøsig, L., & Sidhu, R. (Eds.) (2006). Theory of sampling. (NKS-122). Downloaded from orbit.dtu.dk on: Feb 12, 2018 Theory of sampling Holm, E.; Frøsig, Lars; Sidhu, R. Publication date: 2006 Document Version Publisher's PDF, also known as Version of record Link back to

More information

Phase Equilibrium in Amino Acid Salt Systems for CO2 Capture

Phase Equilibrium in Amino Acid Salt Systems for CO2 Capture Downloaded from orbit.dtu.dk on: Dec 22, 217 Phase Equilibrium in Amino Acid Salt Systems for CO2 Capture Sengeløv, Louise With; Thomsen, Kaj Publication date: 211 Document Version Early version, also

More information

On a set of diophantine equations

On a set of diophantine equations On a set of diophantine equations Citation for published version (APA): van Lint, J. H. (1968). On a set of diophantine equations. (EUT report. WSK, Dept. of Mathematics and Computing Science; Vol. 68-WSK-03).

More information

Feasibility of non-linear simulation for Field II using an angular spectrum approach

Feasibility of non-linear simulation for Field II using an angular spectrum approach Downloaded from orbit.dtu.dk on: Aug 22, 218 Feasibility of non-linear simulation for using an angular spectrum approach Du, Yigang; Jensen, Jørgen Arendt Published in: 28 IEEE Ultrasonics Symposium Link

More information

Resistivity survey at Stora Uppåkra, Sweden

Resistivity survey at Stora Uppåkra, Sweden Resistivity survey at Stora Uppåkra, Sweden Dahlin, Torleif Published in: Uppåkra - Centrum i analys och rapport 2001 Link to publication Citation for published version (APA): Dahlin, T. (2001). Resistivity

More information

Unknown input observer based scheme for detecting faults in a wind turbine converter Odgaard, Peter Fogh; Stoustrup, Jakob

Unknown input observer based scheme for detecting faults in a wind turbine converter Odgaard, Peter Fogh; Stoustrup, Jakob Aalborg Universitet Unknown input observer based scheme for detecting faults in a wind turbine converter Odgaard, Peter Fogh; Stoustrup, Jakob Published in: Elsevier IFAC Publications / IFAC Proceedings

More information

Geometry of power flows and convex-relaxed power flows in distribution networks with high penetration of renewables

Geometry of power flows and convex-relaxed power flows in distribution networks with high penetration of renewables Downloaded from orbit.dtu.dk on: Oct 15, 2018 Geometry of power flows and convex-relaxed power flows in distribution networks with high penetration of renewables Huang, Shaojun; Wu, Qiuwei; Zhao, Haoran;

More information

Neutronics calculations for the ITER Collective Thomson Scattering Diagnostics

Neutronics calculations for the ITER Collective Thomson Scattering Diagnostics Downloaded from orbit.dtu.dk on: Sep 04, 2018 Neutronics calculations for the ITER Collective Thomson Scattering Diagnostics Nonbøl, Erik; Klinkby, Esben Bryndt; Lauritzen, Bent; Santos, R. Publication

More information

GIS Readiness Survey 2014 Schrøder, Anne Lise; Hvingel, Line Træholt; Hansen, Henning Sten; Skovdal, Jesper Høi

GIS Readiness Survey 2014 Schrøder, Anne Lise; Hvingel, Line Træholt; Hansen, Henning Sten; Skovdal, Jesper Høi Aalborg Universitet GIS Readiness Survey 2014 Schrøder, Anne Lise; Hvingel, Line Træholt; Hansen, Henning Sten; Skovdal, Jesper Høi Published in: Geoforum Perspektiv DOI (link to publication from Publisher):

More information

Aalborg Universitet. Published in: IEEE International Conference on Acoustics, Speech, and Signal Processing. Creative Commons License Unspecified

Aalborg Universitet. Published in: IEEE International Conference on Acoustics, Speech, and Signal Processing. Creative Commons License Unspecified Aalborg Universitet Model-based Noise PSD Estimation from Speech in Non-stationary Noise Nielsen, Jesper jær; avalekalam, Mathew Shaji; Christensen, Mads Græsbøll; Boldt, Jesper Bünsow Published in: IEEE

More information

Conceptual design of a thorium supplied thermal molten salt wasteburner

Conceptual design of a thorium supplied thermal molten salt wasteburner Downloaded from orbit.dtu.dk on: Dec 20, 2017 Conceptual design of a thorium supplied thermal molten salt wasteburner Schönfeldt, Troels; Klinkby, Esben Bryndt; Klenø, K.H.; Boje, Peter; Eakes, C.; Pettersen,

More information

Document Version Publisher s PDF, also known as Version of Record (includes final page, issue and volume numbers)

Document Version Publisher s PDF, also known as Version of Record (includes final page, issue and volume numbers) Effect of molar mass ratio of monomers on the mass distribution of chain lengths and compositions in copolymers: extension of the Stockmayer theory Tacx, J.C.J.F.; Linssen, H.N.; German, A.L. Published

More information

Upper and Lower Bounds of Frequency Interval Gramians for a Class of Perturbed Linear Systems Shaker, Hamid Reza

Upper and Lower Bounds of Frequency Interval Gramians for a Class of Perturbed Linear Systems Shaker, Hamid Reza Aalborg Universitet Upper and Lower Bounds of Frequency Interval Gramians for a Class of Perturbed Linear Systems Shaker, Hamid Reza Published in: 7th IFAC Symposium on Robust Control Design DOI (link

More information

Irregular Wave Forces on Monopile Foundations. Effect af Full Nonlinearity and Bed Slope

Irregular Wave Forces on Monopile Foundations. Effect af Full Nonlinearity and Bed Slope Downloaded from orbit.dtu.dk on: Dec 04, 2017 Irregular Wave Forces on Monopile Foundations. Effect af Full Nonlinearity and Bed Slope Schløer, Signe; Bredmose, Henrik; Bingham, Harry B. Published in:

More information

Tectonic Thinking Beim, Anne; Bech-Danielsen, Claus; Bundgaard, Charlotte; Madsen, Ulrik Stylsvig

Tectonic Thinking Beim, Anne; Bech-Danielsen, Claus; Bundgaard, Charlotte; Madsen, Ulrik Stylsvig Aalborg Universitet Tectonic Thinking Beim, Anne; Bech-Danielsen, Claus; Bundgaard, Charlotte; Madsen, Ulrik Stylsvig Publication date: 2011 Document Version Early version, also known as pre-print Link

More information

A Logarithmic Neural Network Architecture for Unbounded Non-Linear Function Approximation

A Logarithmic Neural Network Architecture for Unbounded Non-Linear Function Approximation 1 Introduction A Logarithmic Neural Network Architecture for Unbounded Non-Linear Function Approximation J Wesley Hines Nuclear Engineering Department The University of Tennessee Knoxville, Tennessee,

More information

Comparison between Multitemporal and Polarimetric SAR Data for Land Cover Classification

Comparison between Multitemporal and Polarimetric SAR Data for Land Cover Classification Downloaded from orbit.dtu.dk on: Sep 19, 2018 Comparison between Multitemporal and Polarimetric SAR Data for Land Cover Classification Skriver, Henning Published in: Geoscience and Remote Sensing Symposium,

More information

Surface composition of ordered alloys: An off-stoichiometric effect

Surface composition of ordered alloys: An off-stoichiometric effect Downloaded from orbit.dtu.dk on: Dec 17, 2017 Surface composition of ordered alloys: An off-stoichiometric effect Ruban, Andrei Published in: Physical Review B (Condensed Matter and Materials Physics)

More information

The structure of a nucleolytic ribozyme that employs a catalytic metal ion Liu, Yijin; Wilson, Timothy; Lilley, David

The structure of a nucleolytic ribozyme that employs a catalytic metal ion Liu, Yijin; Wilson, Timothy; Lilley, David University of Dundee The structure of a nucleolytic ribozyme that employs a catalytic metal ion Liu, Yijin; Wilson, Timothy; Lilley, David Published in: Nature Chemical Biology DOI: 10.1038/nchembio.2333

More information

Analytical Studies of the Influence of Regional Groundwater Flow by on the Performance of Borehole Heat Exchangers

Analytical Studies of the Influence of Regional Groundwater Flow by on the Performance of Borehole Heat Exchangers Analytical Studies of the Influence of Regional Groundwater Flow by on the Performance of Borehole Heat Exchangers Claesson, Johan; Hellström, Göran Published in: [Host publication title missing] Published:

More information

Extreme sea levels and the assessment of future coastal flood risk

Extreme sea levels and the assessment of future coastal flood risk Downloaded from orbit.dtu.dk on: Dec 18, 2017 Extreme sea levels and the assessment of future coastal flood risk Nilsen, J. E. Ø. ; Sørensen, Carlo Sass; Dangendore, S. ; Andersson, H. ; Arns, A. ; Jensen,

More information

Robustness of a cross contamination model describing transfer of pathogens during grinding of meat

Robustness of a cross contamination model describing transfer of pathogens during grinding of meat Downloaded from orbit.dtu.dk on: Jan 25, 2019 Robustness of a cross contamination model describing transfer of pathogens during grinding of meat Møller, Cleide Oliveira de Almeida; Sant'Ana, A. S.; Hansen,

More information

Development of a Dainish infrastructure for spatial information (DAISI) Brande-Lavridsen, Hanne; Jensen, Bent Hulegaard

Development of a Dainish infrastructure for spatial information (DAISI) Brande-Lavridsen, Hanne; Jensen, Bent Hulegaard Aalborg Universitet Development of a Dainish infrastructure for spatial information (DAISI) Brande-Lavridsen, Hanne; Jensen, Bent Hulegaard Published in: NORDGI : Nordic Geographic Information Publication

More information

Online algorithms for parallel job scheduling and strip packing Hurink, J.L.; Paulus, J.J.

Online algorithms for parallel job scheduling and strip packing Hurink, J.L.; Paulus, J.J. Online algorithms for parallel job scheduling and strip packing Hurink, J.L.; Paulus, J.J. Published: 01/01/007 Document Version Publisher s PDF, also known as Version of Record (includes final page, issue

More information

Molecular orientation via a dynamically induced pulse-train: Wave packet dynamics of NaI in a static electric field

Molecular orientation via a dynamically induced pulse-train: Wave packet dynamics of NaI in a static electric field Downloaded from orbit.dtu.dk on: Aug 19, 2018 Molecular orientation via a dynamically induced pulse-train: Wave packet dynamics of NaI in a static electric field Marquetand, P.; Materny, A.; Henriksen,

More information

A zero-free interval for chromatic polynomials of graphs with 3-leaf spanning trees

A zero-free interval for chromatic polynomials of graphs with 3-leaf spanning trees Downloaded from orbit.dtu.dk on: Sep 02, 2018 A zero-free interval for chromatic polynomials of graphs with 3-leaf spanning trees Perrett, Thomas Published in: Discrete Mathematics Link to article, DOI:

More information