EXAMINATION IN TSRT14 SENSOR FUSION

Size: px
Start display at page:

Download "EXAMINATION IN TSRT14 SENSOR FUSION"

Transcription

1 EXAMINATION IN TSRT14 SENSOR FUSION ROOM: ISY:s computer rooms TIME: at 14:00 18:00 COURSE: TSRT14 Sensor Fusion PROVKOD: DAT1 DEPARTMENT: ISY NUMBER OF EXERCISES: 4 RESPONSIBLE TEACHER: Gustaf Hendeby, tel VISITS: cirka 15:00, 16:00, 17:00, 18:00 COURSE ADMINISTRATOR: Ninna Stensgård, , ninna.stensgard@liu.se APPROVED TOOLS: 1. F. Gustafsson: Statistical Sensor Fusion 2. C. Lundqvist, Z. Sjanic, F. Gustafsson: Statistical Sensor Fusion Exercises 3. Other course books and tables. 4. Lecture slides; a digital version will be available at /site/edu/rt/tsrt14/ 5. Signal and Systems toolbox manual; a digital version will be available at /site/edu/rt/tsrt14/ MATLAB FILES: The files that are needed for the exam are available at /site/edu/rt/sigsys. Execute initcourse( tsrt14 ) to set the search path. SOLUTIONS: Available at the course homepage after the exam. The exam can be inspected and checked out at in Gustaf Hendeby s office, room 2A:536, B-house, entrance 25, A corridor to the right. PRELIMINARY GRADE LIMITS: grade 3 15 points grade 4 23 points grade 5 30 points NB! Solutions should include code and plots and clear cross references between these. Mark all print-outs with your name. Good luck!

2 UTSKRIFTSTIPS (LINUX): Utskrifter av vanliga filer kan skickas till en viss skrivare genom att man skriver kommandon som till exempel lp -d printername file.pdf i ett terminalfönster. (Byt ut printername mot den aktuella skrivarens namn.) Om man väljer File/Print i ett simulinkschema kan man ange en viss skrivare genom att lägga till -Pprintername i rutan vid Device option. NAMN PÅ UTSKRIFTER: Man kan lägga in text i matlabplottar med kommandona title och gtext och i scopeplottar i Simulink genom att högerklicka i dem och välja Axes properties. I simulinkscheman kan man dubbelklicka på något blankt ställe och sedan skriva in text. 2

3 1. Consider the problem of estimating the state x based on the prior information x 0 N (ˆx 0, P 0 ), and the two independent measurements y i = x + e i and e i = N (0, R i ), for i = 1, 2. Assume: ˆx 0 = P = (1a) y 1 = R 1 = (1b) y 2 = 0.1 ( ) R 2 = (1c) Both analytic and numeric answers are accepted as long as they are properly motivated. (a) Compute the optimal estimates x 1 and x 2 (mean ˆx i and covariance P i ) of x resulting from combining x 0 with y 1 and y 2, respectively! (2p) (b) Use the two individual estimates (x 1 and x 2 ) and derive a combined estimates x 3 of x (mean and covariance)! Assume the only thing that you know about the two estimates is their mean and covariance, e.g., they come from unknown sources in a sensor network. (c) Compute an optimal estimate x 4 of x (mean and covariance)! This time you are allowed to use all information given in the exercise. (d) Plot estimates x 0, x 1, x 2, x 3, and x 4 (mean and covariance)! Compare x 3 and x 4. Explain why they are the same or why they differ depending on your findings! Hint: plot2 can be used to plot mean and covariance of an ndist object. (2p) 3

4 1 S4 S3 0.5 x2 [m] S1 T1 S x1 [m] Figure 1: TOA network and target trajectory as described in Exercise Consider the sensor network of four TOA sensors arranged according to Figure 1. The task is to track an object moving around between the sensors using some of the different filters discussed during the course. The target is assumed to move on an almost circular path, starting in ( 0.8, 1), initially heading straight up with the speed 0.1 m/s and turning with angular rate 0.08 rad/s. (a) Start by creating a sensor model in MATLAB for the sensor network depicted in Figure 1, let R = for all the sensors! Plot the resulting sensor network! (Make sure it is similar to Figure 1.) (2p) (b) Create a motion model for the object in MATLAB. Simulate measurements for 20 s from the model without initial uncertainty and process noise using the just designed sensor model! Add the resulting trajectory to the plot! (c) Use an EKF to estimate the trajectory! Add the estimated trajectory and covariance ellipses to the plot! (Hint: Make sure to update the initial uncertainty and process noise.) (2p) (d) Use a PF to estimate the trajectory! Add the estimated trajectory and covariance ellipses to the plot! 4

5 3. Consider the problem of obtaining a scalar parameter, x, from N independent but noisy measurements, y k = x + e k, (2a) where cov(e k ) = R. The least squares (LS) solution is then given by ˆx ls = arg min x N (y k x) 2. (2b) k=1 (a) Derive the maximum likelihood (ML) estimate, ˆx ml-n, of x assuming that e k N (0, R) where R is assumed known! Use this to show that in this specific case ˆx ls = ˆx ml-n! (b) Derive the ML estimate ˆx ml-l of x assuming e k L(λ), where λ is a function of R (hence assumed known)! Show that the result can be written as N ˆx ml-l = arg min x f(y k x), (2c) where f(e) is a cost function and give f(e)! (In the Gaussian case above, f(e) = e 2.) Here L(λ) represents the Laplace distribution given by the probability density function (pdf) p(e; λ) = 1 2λ exp( e ) λ. (2d) k=1 (5p) (c) Plot the cost function f(e) used in the two cases above and give a reason why one would sometimes like to use the Laplacian noise assumption. Hint: What is the impact of a single large outlier to the end result? (2p) 5

6 IMU Z Y X gravity Figure 2: Experimental setup with IMU mounted close to the user s foot. Figure 3: Schematic problem formulation. 4. Capturing the motion of humans can be of interest in many situations, for instance to create animations in movies. One way to accomplish this is to place several inertial measurement units (IMUs) on a person s body and use the measurements to estimate his/her motion. In this exercise a simplified version of the problem is considered, where the lower leg is tracked using one IMU placed close to the foot and assuming the subject s knee is not moving. (See Figure 2.) The problem is further simplified by assuming the IMU is only rotating directly around its own z-axis, which is aligned with the horizontal plane, as depicted in Figure 3. The task is to estimate the angle denoted x in the figure using measurements from the IMU. The file data mat contains the measurements at 100 Hz (acc contains the accelerometer measurements in the x, y, and z direction, respectively, in the columns, and gyr contains the gyroscope measurements in a similar way.) (a) Suggest a measurement model to estimate x using the accelerometer! Here it can be assumed the accelerometer only measures the gravity. Use this to estimate the orientation and plot it! Hint: (1) The repeated usage of estimate for each measurement can be a bit slow, start with just a few measurements. (2) This is not a standard exsensor model. (4p) (b) Suggest a motion model that uses the gyroscope measurements as input! Use this to estimate x assuming the IMU starts with the x-axis pointing down. Plot the new estimate in the same figure as above! (c) Combine the measurement model and the motion model, and apply a filter to estimate x! Plot the result in the same figure as the two previous estimates. Hint: (1) Make sure to specify the frequency as the 4 th argument when creating the nl object to make the model time discrete. (2) To create a sig object with both measurements and input, use the syntax sig(y, fs, u). 6

Försättsblad till skriftlig tentamen vid Linköpings universitet

Försättsblad till skriftlig tentamen vid Linköpings universitet Försättsblad till skriftlig tentamen vid Linköpings universitet Datum för tentamen 2014-10-22 Sal (1) ISY:s datorsalar (Egypten) (Om tentan går i flera salar ska du bifoga ett försättsblad till varje sal

More information

Försättsblad till skriftlig tentamen vid Linköpings universitet

Försättsblad till skriftlig tentamen vid Linköpings universitet Försättsblad till skriftlig tentamen vid Linköpings universitet Datum för tentamen 2014-08-20 Sal (1) ISY:s datorsalar (Om tentan går i flera salar ska du bifoga ett försättsblad till varje sal och ringa

More information

EXAM IN MODELING AND SIMULATION (TSRT62)

EXAM IN MODELING AND SIMULATION (TSRT62) EXAM IN MODELING AND SIMULATION (TSRT62) SAL: ISY:s datorsalar TID: Friday 5th January 2018, kl. 8.00 12.00 KURS: TSRT62 Modeling and Simulation PROVKOD: DAT1 INSTITUTION: ISY ANTAL UPPGIFTER: 5 ANTAL

More information

TSRT14: Sensor Fusion Lecture 1

TSRT14: Sensor Fusion Lecture 1 TSRT14: Sensor Fusion Lecture 1 Course overview Estimation theory for linear models Gustaf Hendeby gustaf.hendeby@liu.se Course Overview TSRT14 Lecture 1 Gustaf Hendeby Spring 2018 2 / 23 Course Goals:

More information

EXAM IN MODELING AND SIMULATION (TSRT62)

EXAM IN MODELING AND SIMULATION (TSRT62) EXAM IN MODELING AND SIMULATION (TSRT62) SAL: ISY:s datorsalar TID: Wednesday 4th January 2017, kl. 8.00 12.00 KURS: TSRT62 Modeling and Simulation PROVKOD: DAT1 INSTITUTION: ISY ANTAL UPPGIFTER: 5 ANTAL

More information

Sensor Fusion, 2014 Lecture 1: 1 Lectures

Sensor Fusion, 2014 Lecture 1: 1 Lectures Sensor Fusion, 2014 Lecture 1: 1 Lectures Lecture Content 1 Course overview. Estimation theory for linear models. 2 Estimation theory for nonlinear models 3 Sensor networks and detection theory 4 Nonlinear

More information

Calibration of a magnetometer in combination with inertial sensors

Calibration of a magnetometer in combination with inertial sensors Calibration of a magnetometer in combination with inertial sensors Manon Kok, Linköping University, Sweden Joint work with: Thomas Schön, Uppsala University, Sweden Jeroen Hol, Xsens Technologies, the

More information

TSRT14: Sensor Fusion Lecture 8

TSRT14: Sensor Fusion Lecture 8 TSRT14: Sensor Fusion Lecture 8 Particle filter theory Marginalized particle filter Gustaf Hendeby gustaf.hendeby@liu.se TSRT14 Lecture 8 Gustaf Hendeby Spring 2018 1 / 25 Le 8: particle filter theory,

More information

VN-100 Velocity Compensation

VN-100 Velocity Compensation VN-100 Velocity Compensation Velocity / Airspeed Aiding for AHRS Applications Application Note Abstract This application note describes how the VN-100 can be used in non-stationary applications which require

More information

TSRT14: Sensor Fusion Lecture 9

TSRT14: Sensor Fusion Lecture 9 TSRT14: Sensor Fusion Lecture 9 Simultaneous localization and mapping (SLAM) Gustaf Hendeby gustaf.hendeby@liu.se TSRT14 Lecture 9 Gustaf Hendeby Spring 2018 1 / 28 Le 9: simultaneous localization and

More information

Inertial Odometry on Handheld Smartphones

Inertial Odometry on Handheld Smartphones Inertial Odometry on Handheld Smartphones Arno Solin 1 Santiago Cortés 1 Esa Rahtu 2 Juho Kannala 1 1 Aalto University 2 Tampere University of Technology 21st International Conference on Information Fusion

More information

Solutions for examination in Sensor Fusion,

Solutions for examination in Sensor Fusion, Solutions for examination in Sensor Fusion, 17-- 1. (a By conditioning on x k and y k, and the matching noise components w 1,k and w,k, the remaining model becomes ( x l T k+1 = xl k + w l T k, where x

More information

Advanced Machine Learning Practical 4b Solution: Regression (BLR, GPR & Gradient Boosting)

Advanced Machine Learning Practical 4b Solution: Regression (BLR, GPR & Gradient Boosting) Advanced Machine Learning Practical 4b Solution: Regression (BLR, GPR & Gradient Boosting) Professor: Aude Billard Assistants: Nadia Figueroa, Ilaria Lauzana and Brice Platerrier E-mails: aude.billard@epfl.ch,

More information

Presenter: Siu Ho (4 th year, Doctor of Engineering) Other authors: Dr Andy Kerr, Dr Avril Thomson

Presenter: Siu Ho (4 th year, Doctor of Engineering) Other authors: Dr Andy Kerr, Dr Avril Thomson The development and evaluation of a sensor-fusion and adaptive algorithm for detecting real-time upper-trunk kinematics, phases and timing of the sit-to-stand movements in stroke survivors Presenter: Siu

More information

the robot in its current estimated position and orientation (also include a point at the reference point of the robot)

the robot in its current estimated position and orientation (also include a point at the reference point of the robot) CSCI 4190 Introduction to Robotic Algorithms, Spring 006 Assignment : out February 13, due February 3 and March Localization and the extended Kalman filter In this assignment, you will write a program

More information

Project: Vibration Damping

Project: Vibration Damping Mekanik GK för I (FMEA10) 2018 Project: Vibration Damping Project team: Name: Personal id-number: Mekanik www.mek.lth.se. 1 Project: Vibration damping Project Specification 1. Introduction In this project

More information

CS491/691: Introduction to Aerial Robotics

CS491/691: Introduction to Aerial Robotics CS491/691: Introduction to Aerial Robotics Topic: State Estimation Dr. Kostas Alexis (CSE) World state (or system state) Belief state: Our belief/estimate of the world state World state: Real state of

More information

System identification and sensor fusion in dynamical systems. Thomas Schön Division of Systems and Control, Uppsala University, Sweden.

System identification and sensor fusion in dynamical systems. Thomas Schön Division of Systems and Control, Uppsala University, Sweden. System identification and sensor fusion in dynamical systems Thomas Schön Division of Systems and Control, Uppsala University, Sweden. The system identification and sensor fusion problem Inertial sensors

More information

Angle estimation using gyros and accelerometers

Angle estimation using gyros and accelerometers Lab in Dynamical systems and control TSRT21 Angle estimation using gyros and accelerometers This version: January 25, 2017 Name: LERTEKNIK REG P-number: Date: AU T O MA R TI C C O N T OL Passed: LINKÖPING

More information

Pose tracking of magnetic objects

Pose tracking of magnetic objects Pose tracking of magnetic objects Niklas Wahlström Department of Information Technology, Uppsala University, Sweden Novmber 13, 2017 niklas.wahlstrom@it.uu.se Seminar Vi2 Short about me 2005-2010: Applied

More information

Autonomous Mobile Robot Design

Autonomous Mobile Robot Design Autonomous Mobile Robot Design Topic: Extended Kalman Filter Dr. Kostas Alexis (CSE) These slides relied on the lectures from C. Stachniss, J. Sturm and the book Probabilistic Robotics from Thurn et al.

More information

Optimization-Based Control

Optimization-Based Control Optimization-Based Control Richard M. Murray Control and Dynamical Systems California Institute of Technology DRAFT v1.7a, 19 February 2008 c California Institute of Technology All rights reserved. This

More information

1 Kalman Filter Introduction

1 Kalman Filter Introduction 1 Kalman Filter Introduction You should first read Chapter 1 of Stochastic models, estimation, and control: Volume 1 by Peter S. Maybec (available here). 1.1 Explanation of Equations (1-3) and (1-4) Equation

More information

YTÜ Mechanical Engineering Department

YTÜ Mechanical Engineering Department YTÜ Mechanical Engineering Department Lecture of Special Laboratory of Machine Theory, System Dynamics and Control Division Coupled Tank 1 Level Control with using Feedforward PI Controller Lab Report

More information

Problem Weight Total 100

Problem Weight Total 100 EE 350 Problem Set 3 Cover Sheet Fall 2016 Last Name (Print): First Name (Print): ID number (Last 4 digits): Section: Submission deadlines: Turn in the written solutions by 4:00 pm on Tuesday September

More information

Angle estimation using gyros and accelerometers

Angle estimation using gyros and accelerometers Angle estimation using gyros and accelerometers This version: January 23, 2018 Name: LERTEKNIK REG P-number: Date: AU T O MA RO TI C C O N T L Passed: LINKÖPING Chapter 1 Introduction The purpose of this

More information

2D Image Processing. Bayes filter implementation: Kalman filter

2D Image Processing. Bayes filter implementation: Kalman filter 2D Image Processing Bayes filter implementation: Kalman filter Prof. Didier Stricker Dr. Gabriele Bleser Kaiserlautern University http://ags.cs.uni-kl.de/ DFKI Deutsches Forschungszentrum für Künstliche

More information

Automatic control III. Homework assignment Deadline (for this assignment): Monday December 9, 24.00

Automatic control III. Homework assignment Deadline (for this assignment): Monday December 9, 24.00 Uppsala University Department of Information Technology Division of Systems and Control November 18, 2013 Automatic control III Homework assignment 2 2013 Deadline (for this assignment): Monday December

More information

UAV Navigation: Airborne Inertial SLAM

UAV Navigation: Airborne Inertial SLAM Introduction UAV Navigation: Airborne Inertial SLAM Jonghyuk Kim Faculty of Engineering and Information Technology Australian National University, Australia Salah Sukkarieh ARC Centre of Excellence in

More information

State Estimation and Motion Tracking for Spatially Diverse VLC Networks

State Estimation and Motion Tracking for Spatially Diverse VLC Networks State Estimation and Motion Tracking for Spatially Diverse VLC Networks GLOBECOM Optical Wireless Communications Workshop December 3, 2012 Anaheim, CA Michael Rahaim mrahaim@bu.edu Gregary Prince gbprince@bu.edu

More information

Exam 1 September 11, 2013

Exam 1 September 11, 2013 Exam 1 Instructions: You have 60 minutes to complete this exam. This is a closed-book, closed-notes exam. You are allowed to use an approved calculator during the exam. Usage of mobile phones and other

More information

TSRT14: Sensor Fusion Lecture 6. Kalman Filter (KF) Le 6: Kalman filter (KF), approximations (EKF, UKF) Lecture 5: summary

TSRT14: Sensor Fusion Lecture 6. Kalman Filter (KF) Le 6: Kalman filter (KF), approximations (EKF, UKF) Lecture 5: summary TSRT14 Lecture 6 Gustaf Hendeby Spring 217 1 / 42 Le 6: Kalman filter KF approximations EKF UKF TSRT14: Sensor Fusion Lecture 6 Kalman filter KF KF approximations EKF UKF Gustaf Hendeby hendeby@isyliuse

More information

FALL 2018 MATH 4211/6211 Optimization Homework 4

FALL 2018 MATH 4211/6211 Optimization Homework 4 FALL 2018 MATH 4211/6211 Optimization Homework 4 This homework assignment is open to textbook, reference books, slides, and online resources, excluding any direct solution to the problem (such as solution

More information

Lab 4 Numerical simulation of a crane

Lab 4 Numerical simulation of a crane Lab 4 Numerical simulation of a crane Agenda Time 10 min Item Review agenda Introduce the crane problem 95 min Lab activity I ll try to give you a 5- minute warning before the end of the lab period to

More information

Adaptive Systems Homework Assignment 1

Adaptive Systems Homework Assignment 1 Signal Processing and Speech Communication Lab. Graz University of Technology Adaptive Systems Homework Assignment 1 Name(s) Matr.No(s). The analytical part of your homework (your calculation sheets) as

More information

Locating and supervising relief forces in buildings without the use of infrastructure

Locating and supervising relief forces in buildings without the use of infrastructure Locating and supervising relief forces in buildings without the use of infrastructure Tracking of position with low-cost inertial sensors Martin Trächtler 17.10.2014 18th Leibniz Conference of advanced

More information

Partner s Name: EXPERIMENT MOTION PLOTS & FREE FALL ACCELERATION

Partner s Name: EXPERIMENT MOTION PLOTS & FREE FALL ACCELERATION Name: Partner s Name: EXPERIMENT 500-2 MOTION PLOTS & FREE FALL ACCELERATION APPARATUS Track and cart, pole and crossbar, large ball, motion detector, LabPro interface. Software: Logger Pro 3.4 INTRODUCTION

More information

Attitude Estimation for Augmented Reality with Smartphones

Attitude Estimation for Augmented Reality with Smartphones Attitude Estimation for Augmented Reality with Smartphones Thibaud Michel Pierre Genevès Hassen Fourati Nabil Layaïda Université Grenoble Alpes, INRIA LIG, GIPSA-Lab, CNRS June 13 th, 2017 http://tyrex.inria.fr/mobile/benchmarks-attitude

More information

Nonlinear Filtering. With Polynomial Chaos. Raktim Bhattacharya. Aerospace Engineering, Texas A&M University uq.tamu.edu

Nonlinear Filtering. With Polynomial Chaos. Raktim Bhattacharya. Aerospace Engineering, Texas A&M University uq.tamu.edu Nonlinear Filtering With Polynomial Chaos Raktim Bhattacharya Aerospace Engineering, Texas A&M University uq.tamu.edu Nonlinear Filtering with PC Problem Setup. Dynamics: ẋ = f(x, ) Sensor Model: ỹ = h(x)

More information

Test 2 Electrical Engineering Bachelor Module 8 Signal Processing and Communications

Test 2 Electrical Engineering Bachelor Module 8 Signal Processing and Communications Test 2 Electrical Engineering Bachelor Module 8 Signal Processing and Communications (201400432) Tuesday May 26, 2015, 14:00-17:00h This test consists of three parts, corresponding to the three courses

More information

Partially Observable Markov Decision Processes (POMDPs)

Partially Observable Markov Decision Processes (POMDPs) Partially Observable Markov Decision Processes (POMDPs) Sachin Patil Guest Lecture: CS287 Advanced Robotics Slides adapted from Pieter Abbeel, Alex Lee Outline Introduction to POMDPs Locally Optimal Solutions

More information

Motion on a linear air track

Motion on a linear air track Motion on a linear air track Introduction During the early part of the 17 th century, Galileo experimentally examined the concept of acceleration. One of his goals was to learn more about freely falling

More information

Outline Lecture 2 2(32)

Outline Lecture 2 2(32) Outline Lecture (3), Lecture Linear Regression and Classification it is our firm belief that an understanding of linear models is essential for understanding nonlinear ones Thomas Schön Division of Automatic

More information

2D Image Processing. Bayes filter implementation: Kalman filter

2D Image Processing. Bayes filter implementation: Kalman filter 2D Image Processing Bayes filter implementation: Kalman filter Prof. Didier Stricker Kaiserlautern University http://ags.cs.uni-kl.de/ DFKI Deutsches Forschungszentrum für Künstliche Intelligenz http://av.dfki.de

More information

EXAMINATION QUESTION PAPER

EXAMINATION QUESTION PAPER Faculty of Science and Technology EXAMINATION QUESTION PAPER Exam in: FYS-2010 Digital Image Processing Date: Monday 26 September 2016 Time: 09.00 13.00 Place: Approved aids: Administrasjonsbygget, Aud.Max.

More information

Robustness and Distribution Assumptions

Robustness and Distribution Assumptions Chapter 1 Robustness and Distribution Assumptions 1.1 Introduction In statistics, one often works with model assumptions, i.e., one assumes that data follow a certain model. Then one makes use of methodology

More information

Model-building and parameter estimation

Model-building and parameter estimation Luleå University of Technology Johan Carlson Last revision: July 27, 2009 Measurement Technology and Uncertainty Analysis - E7021E MATLAB homework assignment Model-building and parameter estimation Introduction

More information

Multi-Robotic Systems

Multi-Robotic Systems CHAPTER 9 Multi-Robotic Systems The topic of multi-robotic systems is quite popular now. It is believed that such systems can have the following benefits: Improved performance ( winning by numbers ) Distributed

More information

ENGR352 Problem Set 02

ENGR352 Problem Set 02 engr352/engr352p02 September 13, 2018) ENGR352 Problem Set 02 Transfer function of an estimator 1. Using Eq. (1.1.4-27) from the text, find the correct value of r ss (the result given in the text is incorrect).

More information

Detection and Estimation Theory

Detection and Estimation Theory Detection and Estimation Theory Instructor: Prof. Namrata Vaswani Dept. of Electrical and Computer Engineering Iowa State University http://www.ece.iastate.edu/ namrata Slide 1 What is Estimation and Detection

More information

Sudden Expansion Exercise

Sudden Expansion Exercise Sudden Expansion Exercise EAS 361, Fall 2009 Before coming to the lab, read sections 1 through 4 of this document. Engineering of Everyday Things Gerald Recktenwald Portland State University gerry@me.pdx.edu

More information

Position Estimation and Modeling of a Flexible Industrial Robot

Position Estimation and Modeling of a Flexible Industrial Robot Position Estimation and Modeling of a Flexible Industrial Robot Rickard Karlsson, Mikael Norrlöf, Division of Automatic Control Department of Electrical Engineering Linköpings universitet, SE-581 83 Linköping,

More information

Orientation Estimation using Smartphone Sensors

Orientation Estimation using Smartphone Sensors Statistical Sensor Fusion Lab 2 Orientation Estimation using Smartphone Sensors This version: May 2014 LERTEKNIK REG Name: P-number: AU T O MA RO TI C C O N T LINKÖPING L Date: Passed: 1 Introduction Navigation

More information

Association studies and regression

Association studies and regression Association studies and regression CM226: Machine Learning for Bioinformatics. Fall 2016 Sriram Sankararaman Acknowledgments: Fei Sha, Ameet Talwalkar Association studies and regression 1 / 104 Administration

More information

Applications of Inertial Measurement Units in Monitoring Rehabilitation Progress of Arm in Stroke Survivors

Applications of Inertial Measurement Units in Monitoring Rehabilitation Progress of Arm in Stroke Survivors Applications of Inertial Measurement Units in Monitoring Rehabilitation Progress of Arm in Stroke Survivors Committee: Dr. Anura P. Jayasumana Dr. Matthew P. Malcolm Dr. Sudeep Pasricha Dr. Yashwant K.

More information

Linear Models for Regression CS534

Linear Models for Regression CS534 Linear Models for Regression CS534 Prediction Problems Predict housing price based on House size, lot size, Location, # of rooms Predict stock price based on Price history of the past month Predict the

More information

Algorithms Re-Exam TIN093/DIT600

Algorithms Re-Exam TIN093/DIT600 Algorithms Re-Exam TIN093/DIT600 Course: Algorithms Course code: TIN 093 (CTH), DIT 600 (GU) Date, time: 7th January 2016, 8:30 12:30 Building: M Responsible teacher: Peter Damaschke, Tel. 5405. Examiner:

More information

Terrain Navigation Using the Ambient Magnetic Field as a Map

Terrain Navigation Using the Ambient Magnetic Field as a Map Terrain Navigation Using the Ambient Magnetic Field as a Map Aalto University IndoorAtlas Ltd. August 30, 017 In collaboration with M. Kok, N. Wahlström, T. B. Schön, J. Kannala, E. Rahtu, and S. Särkkä

More information

Digital Signal Processing, Lecture 2 Frequency description continued, DFT

Digital Signal Processing, Lecture 2 Frequency description continued, DFT Outline cture 2 2 Digital Signal Processing, cture 2 Frequency description continued, DFT Thomas Schön Division of Automatic Control Department of Electrical Engineering Linköping i University it E-mail:

More information

6.867 Machine Learning

6.867 Machine Learning 6.867 Machine Learning Problem Set 2 Due date: Wednesday October 6 Please address all questions and comments about this problem set to 6867-staff@csail.mit.edu. You will need to use MATLAB for some of

More information

Calibration of a magnetometer in combination with inertial sensors

Calibration of a magnetometer in combination with inertial sensors Calibration of a magnetometer in combination with inertial sensors Manon Kok, Jeroen D. Hol, Thomas B. Schön, Fredrik Gustafsson and Henk Luinge Division of Automatic Control Linköping University, Sweden

More information

Physics 1050 Experiment 3. Force and Acceleration

Physics 1050 Experiment 3. Force and Acceleration Force and Acceleration Prelab uestions! These questions need to be completed before entering the lab. Please show all workings. Prelab 1: Draw the free body diagram for the cart on an inclined plane. Break

More information

Those data on the time required for the pitch to traverse various distances were measured in

Those data on the time required for the pitch to traverse various distances were measured in APPENDIX A: Ball Timing Measurements Those data on the time required for the pitch to traverse various distances were measured in the following way. To measure the time at which the ball was released from

More information

Collisions and conservation laws

Collisions and conservation laws (ta initials) first name (print) last name (print) brock id (ab17cd) (lab date) Experiment 4 Collisions and conservation laws Prelab preparation Print a copy of this experiment to bring to your scheduled

More information

EDUCATION DAY WORKBOOK

EDUCATION DAY WORKBOOK Grades 9 12 EDUCATION DAY WORKBOOK It is with great thanks for their knowledge and expertise that the individuals who devised this book are recognized. MAKING MEASUREMENTS Time: Solve problems using a

More information

Application of state observers in attitude estimation using low-cost sensors

Application of state observers in attitude estimation using low-cost sensors Application of state observers in attitude estimation using low-cost sensors Martin Řezáč Czech Technical University in Prague, Czech Republic March 26, 212 Introduction motivation for inertial estimation

More information

Problem Set 2. MAS 622J/1.126J: Pattern Recognition and Analysis. Due: 5:00 p.m. on September 30

Problem Set 2. MAS 622J/1.126J: Pattern Recognition and Analysis. Due: 5:00 p.m. on September 30 Problem Set 2 MAS 622J/1.126J: Pattern Recognition and Analysis Due: 5:00 p.m. on September 30 [Note: All instructions to plot data or write a program should be carried out using Matlab. In order to maintain

More information

Dynamic Multipath Estimation by Sequential Monte Carlo Methods

Dynamic Multipath Estimation by Sequential Monte Carlo Methods Dynamic Multipath Estimation by Sequential Monte Carlo Methods M. Lentmaier, B. Krach, P. Robertson, and T. Thiasiriphet German Aerospace Center (DLR) Slide 1 Outline Multipath problem and signal model

More information

Predictive Control of Gyroscopic-Force Actuators for Mechanical Vibration Damping

Predictive Control of Gyroscopic-Force Actuators for Mechanical Vibration Damping ARC Centre of Excellence for Complex Dynamic Systems and Control, pp 1 15 Predictive Control of Gyroscopic-Force Actuators for Mechanical Vibration Damping Tristan Perez 1, 2 Joris B Termaat 3 1 School

More information

RELATIVE NAVIGATION FOR SATELLITES IN CLOSE PROXIMITY USING ANGLES-ONLY OBSERVATIONS

RELATIVE NAVIGATION FOR SATELLITES IN CLOSE PROXIMITY USING ANGLES-ONLY OBSERVATIONS (Preprint) AAS 12-202 RELATIVE NAVIGATION FOR SATELLITES IN CLOSE PROXIMITY USING ANGLES-ONLY OBSERVATIONS Hemanshu Patel 1, T. Alan Lovell 2, Ryan Russell 3, Andrew Sinclair 4 "Relative navigation using

More information

Local Positioning with Parallelepiped Moving Grid

Local Positioning with Parallelepiped Moving Grid Local Positioning with Parallelepiped Moving Grid, WPNC06 16.3.2006, niilo.sirola@tut.fi p. 1/?? TA M P E R E U N I V E R S I T Y O F T E C H N O L O G Y M a t h e m a t i c s Local Positioning with Parallelepiped

More information

To study the physical pendulum i.e. a composite, rigid body comparing measured and calculated values of moments of inertia.

To study the physical pendulum i.e. a composite, rigid body comparing measured and calculated values of moments of inertia. Physical pendulum Number 135610-EN Topic Mechanics, rigid bodies Version 2016.08.11 / HS Type Student exercise Suggested for grade 12+ p. 1/5 Objective To study the physical pendulum i.e. a composite,

More information

Announcements Monday, November 13

Announcements Monday, November 13 Announcements Monday, November 13 The third midterm is on this Friday, November 17. The exam covers 3.1, 3.2, 5.1, 5.2, 5.3, and 5.5. About half the problems will be conceptual, and the other half computational.

More information

Using the Kalman Filter to Estimate the State of a Maneuvering Aircraft

Using the Kalman Filter to Estimate the State of a Maneuvering Aircraft 1 Using the Kalman Filter to Estimate the State of a Maneuvering Aircraft K. Meier and A. Desai Abstract Using sensors that only measure the bearing angle and range of an aircraft, a Kalman filter is implemented

More information

Solutions for examination in TSRT78 Digital Signal Processing,

Solutions for examination in TSRT78 Digital Signal Processing, Solutions for examination in TSRT78 Digital Signal Processing, 2014-04-14 1. s(t) is generated by s(t) = 1 w(t), 1 + 0.3q 1 Var(w(t)) = σ 2 w = 2. It is measured as y(t) = s(t) + n(t) where n(t) is white

More information

CIS 390 Fall 2016 Robotics: Planning and Perception Final Review Questions

CIS 390 Fall 2016 Robotics: Planning and Perception Final Review Questions CIS 390 Fall 2016 Robotics: Planning and Perception Final Review Questions December 14, 2016 Questions Throughout the following questions we will assume that x t is the state vector at time t, z t is the

More information

Mechatronics II Laboratory EXPERIMENT #1: FORCE AND TORQUE SENSORS DC Motor Characteristics Dynamometer, Part I

Mechatronics II Laboratory EXPERIMENT #1: FORCE AND TORQUE SENSORS DC Motor Characteristics Dynamometer, Part I Mechatronics II Laboratory EXPEIMENT #1: FOCE AND TOQUE SENSOS DC Motor Characteristics Dynamometer, Part I Force Sensors Force and torque are not measured directly. Typically, the deformation or strain

More information

Notes on Conditioning

Notes on Conditioning Notes on Conditioning Robert A. van de Geijn The University of Texas Austin, TX 7872 October 6, 204 NOTE: I have not thoroughly proof-read these notes!!! Motivation Correctness in the presence of error

More information

Kurskod: TAMS28 MATEMATISK STATISTIK Provkod: TEN1 18 August 2017, 08:00-12:00. English Version

Kurskod: TAMS28 MATEMATISK STATISTIK Provkod: TEN1 18 August 2017, 08:00-12:00. English Version Kurskod: TAMS28 MATEMATISK STATISTIK Provkod: TEN1 18 August 2017, 08:00-12:00 Examiner: Zhenxia Liu (Tel: 070 0895208). Please answer in ENGLISH if you can. a. You are allowed to use a calculator, the

More information

PHYSICS 221 SPRING EXAM 1: February 20, 2014; 8:15pm 10:15pm

PHYSICS 221 SPRING EXAM 1: February 20, 2014; 8:15pm 10:15pm PHYSICS 221 SPRING 2014 EXAM 1: February 20, 2014; 8:15pm 10:15pm Name (printed): Recitation Instructor: Section # INSTRUCTIONS: This exam contains 25 multiple-choice questions plus 2 extra credit questions,

More information

Optimeringslära för F (SF1811) / Optimization (SF1841)

Optimeringslära för F (SF1811) / Optimization (SF1841) Optimeringslära för F (SF1811) / Optimization (SF1841) 1. Information about the course 2. Examples of optimization problems 3. Introduction to linear programming Introduction - Per Enqvist 1 Linear programming

More information

MEAM 520. More Velocity Kinematics

MEAM 520. More Velocity Kinematics MEAM 520 More Velocity Kinematics Katherine J. Kuchenbecker, Ph.D. General Robotics, Automation, Sensing, and Perception Lab (GRASP) MEAM Department, SEAS, University of Pennsylvania Lecture 12: October

More information

8 Basics of Hypothesis Testing

8 Basics of Hypothesis Testing 8 Basics of Hypothesis Testing 4 Problems Problem : The stochastic signal S is either 0 or E with equal probability, for a known value E > 0. Consider an observation X = x of the stochastic variable X

More information

EE4304 C-term 2007: Lecture 17 Supplemental Slides

EE4304 C-term 2007: Lecture 17 Supplemental Slides EE434 C-term 27: Lecture 17 Supplemental Slides D. Richard Brown III Worcester Polytechnic Institute, Department of Electrical and Computer Engineering February 5, 27 Geometric Representation: Optimal

More information

AP PHYSICS C Mechanics - SUMMER ASSIGNMENT FOR

AP PHYSICS C Mechanics - SUMMER ASSIGNMENT FOR AP PHYSICS C Mechanics - SUMMER ASSIGNMENT FOR 2018-2019 Dear Student: The AP physics course you have signed up for is designed to prepare you for a superior performance on the AP test. To complete material

More information

10-701/ Machine Learning - Midterm Exam, Fall 2010

10-701/ Machine Learning - Midterm Exam, Fall 2010 10-701/15-781 Machine Learning - Midterm Exam, Fall 2010 Aarti Singh Carnegie Mellon University 1. Personal info: Name: Andrew account: E-mail address: 2. There should be 15 numbered pages in this exam

More information

Matlab code for stochastic model updating

Matlab code for stochastic model updating Matlab code for stochastic model updating The Matlab code provided performs the stochastic model updating methods described in [1] and [2] using the data obtained from experiments. This document contains

More information

Rotational Dynamics. Moment of Inertia of a point mass about an axis of rotation a distance r away: I m = mr 2

Rotational Dynamics. Moment of Inertia of a point mass about an axis of rotation a distance r away: I m = mr 2 Rotational Dynamics Objective: To investigate the behavior of a rotating system subjected to internal torques and external torques. To apply knowledge gained from the linear momentum lab to its rotational

More information

Quaternion based Extended Kalman Filter

Quaternion based Extended Kalman Filter Quaternion based Extended Kalman Filter, Sergio Montenegro About this lecture General introduction to rotations and quaternions. Introduction to Kalman Filter for Attitude Estimation How to implement and

More information

Algorithms Exam TIN093 /DIT602

Algorithms Exam TIN093 /DIT602 Algorithms Exam TIN093 /DIT602 Course: Algorithms Course code: TIN 093, TIN 092 (CTH), DIT 602 (GU) Date, time: 21st October 2017, 14:00 18:00 Building: SBM Responsible teacher: Peter Damaschke, Tel. 5405

More information

PHYSICS 111 SPRING FINAL EXAM: May 2, 2017; 2:15pm - 4:15pm

PHYSICS 111 SPRING FINAL EXAM: May 2, 2017; 2:15pm - 4:15pm PHYSICS 111 SPRING 2017 FINAL EXAM: May 2, 2017; 2:15pm - 4:15pm Name (printed): Recitation Instructor: Section # INSTRUCTIONS: This exam contains 30 multiple-choice question, each worth 3 points, for

More information

Barometer-Aided Road Grade Estimation

Barometer-Aided Road Grade Estimation Barometer-Aided Road Grade Estimation Jussi Parviainen, Jani Hautamäki, Jussi Collin and Jarmo Takala Tampere University of Technology, Finland BIOGRAPHY Jussi Parviainen received his M.Sc. degree in May

More information

Intro to Bayesian Methods

Intro to Bayesian Methods Intro to Bayesian Methods Rebecca C. Steorts Bayesian Methods and Modern Statistics: STA 360/601 Lecture 1 1 Course Webpage Syllabus LaTeX reference manual R markdown reference manual Please come to office

More information

Kalman Filter Computer Vision (Kris Kitani) Carnegie Mellon University

Kalman Filter Computer Vision (Kris Kitani) Carnegie Mellon University Kalman Filter 16-385 Computer Vision (Kris Kitani) Carnegie Mellon University Examples up to now have been discrete (binary) random variables Kalman filtering can be seen as a special case of a temporal

More information

Modeling & Simulation 2018, Fö 1

Modeling & Simulation 2018, Fö 1 Modeling & Simulation 2018, Fö 1 Claudio Altafini Automatic Control, ISY Linköping University, Sweden Course information Lecturer & examiner Claudio Altafini (claudio.altafini@liu.se) Teaching assistants

More information

Automatic Control II: Summary and comments

Automatic Control II: Summary and comments Automatic Control II: Summary and comments Hints for what is essential to understand the course, and to perform well at the exam. You should be able to distinguish between continuous-time (c-t) and discrete-time

More information

Introduction to Probabilistic Graphical Models: Exercises

Introduction to Probabilistic Graphical Models: Exercises Introduction to Probabilistic Graphical Models: Exercises Cédric Archambeau Xerox Research Centre Europe cedric.archambeau@xrce.xerox.com Pascal Bootcamp Marseille, France, July 2010 Exercise 1: basics

More information

STATISTICAL ORBIT DETERMINATION

STATISTICAL ORBIT DETERMINATION STATISTICAL ORBIT DETERMINATION Satellite Tracking Example of SNC and DMC ASEN 5070 LECTURE 6 4.08.011 1 We will develop a simple state noise compensation (SNC) algorithm. This algorithm adds process noise

More information

EE565:Mobile Robotics Lecture 6

EE565:Mobile Robotics Lecture 6 EE565:Mobile Robotics Lecture 6 Welcome Dr. Ahmad Kamal Nasir Announcement Mid-Term Examination # 1 (25%) Understand basic wheel robot kinematics, common mobile robot sensors and actuators knowledge. Understand

More information

Robotics. Lecture 4: Probabilistic Robotics. See course website for up to date information.

Robotics. Lecture 4: Probabilistic Robotics. See course website   for up to date information. Robotics Lecture 4: Probabilistic Robotics See course website http://www.doc.ic.ac.uk/~ajd/robotics/ for up to date information. Andrew Davison Department of Computing Imperial College London Review: Sensors

More information