CDA6530: Performance Models of Computers and Networks. Chapter 4: Using Matlab for Performance Analysis and Simulation

Similar documents
CDA5530: Performance Models of Computers and Networks. Chapter 8: Using Matlab for Performance Analysis and Simulation

CDA6530: Performance Models of Computers and Networks. Chapter 4: Using Matlab for Performance Analysis and Simulation

Introduction to Matlab

Introduction to MATLAB. Computational Probability and Statistics CIS 2033 Section 003

INTRODUCTION TO MATLAB, SIMULINK, AND THE COMMUNICATION TOOLBOX

MATLAB Tutorial. Digital Signal Processing. Course Details. Topics. MATLAB Environment. Introduction. Digital Signal Processing (DSP)

Some elements for Matlab programming

Fundamentals of MATLAB Usage

Introduction to MatLab. Introduction to MatLab K. Craig 1

Lecturer: Keyvan Dehmamy

MATLAB Vocabulary. Gerald Recktenwald. Version 0.965, 25 February 2017

Getting Started with MATLAB

Inlichtingenblad, matlab- en simulink handleiding en practicumopgaven IWS

Introduction to MATLAB

MATLAB and Numerical Analysis

Programming in Mathematics. Mili I. Shah

Introduction to Octave/Matlab. Deployment of Telecommunication Infrastructures

MATLAB Basics EE107: COMMUNICATION SYSTEMS HUSSAIN ELKOTBY

A Guide to Using Some Basic MATLAB Functions

MATLAB Lecture 1. Introduction to MATLAB

MATLAB Tutorial. Mohammad Motamed 1. August 28, generates a 3 3 matrix.

Computational Foundations of Cognitive Science. Inverse. Inverse. Inverse Determinant

Learning from Data Introduction to Matlab

LabVIEW MathScript Quick Reference

MATH 3511 Basics of MATLAB

CS129: Introduction to Matlab (Code)

selected topic in transportation 2552/2. 1 Prepared by Lect.Weerakaset Suanpaga

Matlab Tutorial, CDS

Introduction to MATLAB

Introduction to MATLAB. CS534 Fall 2016

Mathematical Operations with Arrays and Matrices

Math Sciences Computing Center. University ofwashington. September, Fundamentals Making Plots Printing and Saving Graphs...

MATH 5520 Basics of MATLAB

Grace days can not be used for this assignment

Introduction to Matlab

UNIVERSITI TEKNIKAL MALAYSIA MELAKA FAKULTI KEJURUTERAAN ELEKTRONIK DAN KEJURUTERAAN KOMPUTER

MATLAB Premier. Middle East Technical University Department of Mechanical Engineering ME 304 1/50

A Brief Introduction to MATLAB

12 whereas if I terminate the expression with a semicolon, the printed output is suppressed.

A very brief Matlab introduction

Introduction to Matlab

What is MATLAB? What is MATLAB? Programming Environment MATLAB PROGRAMMING. Stands for MATrix LABoratory. A programming environment

Entering the numbers in these two ways creates the same matrix A.

STAT/MATH 395 A - PROBABILITY II UW Winter Quarter Matlab Tutorial

Fall 2014 MAT 375 Numerical Methods. Introduction to Programming using MATLAB

Introduction to MATLAB. Simon O Keefe Non-Standard Computation Group

Fall 2015 Math 337. Basic MatLab

MATLAB Lesson I. Chiara Lelli. October 2, Politecnico di Milano

A Quick Tutorial on MATLAB. Zeeshan Ali

Chapter 1 MATLAB Preliminaries

Eng Marine Production Management. Introduction to Matlab

2.0 MATLAB Fundamentals

A 30 Minute Introduction to Octave ENGR Engineering Mathematics Tony Richardson

ENGR Fall Exam 1

Stokes Modelling Workshop

PART 1 PROGRAMMING WITH MATHLAB

Laboratory 1 Octave Tutorial

Introduction to GNU-Octave

What is MATLAB and howtostart it up?

Chapter 1 Introduction to MATLAB

How to Use MATLAB. What is MATLAB. Getting Started. Online Help. General Purpose Commands

Introduction to Matlab

Chapter 2 (Part 2) MATLAB Basics. dr.dcd.h CS 101 /SJC 5th Edition 1

(5) ifit/math: «One Class to do some Math» God damn it! Just compute it! ifit workshop NBI Jan 2012 Math - 1

A. Matrix-wise and element-wise operations

MATLAB Functions and Graphics

AMATH 352: MATLAB Tutorial written by Peter Blossey Department of Applied Mathematics University of Washington Seattle, WA

Math Scientific Computing - Matlab Intro and Exercises: Spring 2003

Introduction to. The Help System. Variable and Memory Management. Matrices Generation. Interactive Calculations. Vectors and Matrices

ENGR Fall Exam 1

MATLAB Basics. Mohamed Taha. Communication Engineering Department Princess Sumaya University Page 1 of 32. Full Screen.

Lecture 2: Variables, Vectors and Matrices in MATLAB

INTRODUCTION TO MATLAB (MATrix LABoratory): INTUITIVE APPROACH

What is Matlab? A software environment for interactive numerical computations

Introduction to MATLAB

Getting started with MATLAB

Math 375 Natalia Vladimirova (many ideas, examples, and excersises are borrowed from Profs. Monika Nitsche, Richard Allen, and Stephen Lau)

Image Processing CS 6640 : An Introduction to MATLAB Basics Bo Wang and Avantika Vardhan

Constraint-based Metabolic Reconstructions & Analysis H. Scott Hinton. Matlab Tutorial. Lesson: Matlab Tutorial

PC-MATLAB PRIMER. This is intended as a guided tour through PCMATLAB. Type as you go and watch what happens.

Introduction to Matlab. Summer School CEA-EDF-INRIA 2011 of Numerical Analysis

Matlab course at. P. Ciuciu 1,2. 1: CEA/NeuroSpin/LNAO 2: IFR49

Brief Matlab tutorial

Introduction to MATLAB

A Quick Introduction to MATLAB/Octave. Kenny Marino, Nupur Chatterji

This is a basic tutorial for the MATLAB program which is a high-performance language for technical computing for platforms:

Variable Definition and Statement Suppression You can create your own variables, and assign them values using = >> a = a = 3.

Table of Contents. Basis CEMTool 7 Tutorial

Basics. Bilkent University. CS554 Computer Vision Pinar Duygulu

Matlab and Psychophysics Toolbox Seminar Part 1. Introduction to Matlab

Introduction to Matlab

EE 350. Continuous-Time Linear Systems. Recitation 1. 1

FreeMat Tutorial. 3x + 4y 2z = 5 2x 5y + z = 8 x x + 3y = -1 xx

BSM510 Numerical Analysis

Short Introduction into MATLAB

Excel R Tips. is used for multiplication. + is used for addition. is used for subtraction. / is used for division

Matlab Tutorial 1: Working with variables, arrays, and plotting

Introduction to MATLAB programming: Fundamentals

MATLAB Tutorial EE351M DSP. Created: Thursday Jan 25, 2007 Rayyan Jaber. Modified by: Kitaek Bae. Outline

Outline. User-based knn Algorithm Basics of Matlab Control Structures Scripts and Functions Help

Transcription:

CDA6530: Performance Models of Computers and Networks Chapter 4: Using Matlab for Performance Analysis and Simulation

Objective Learn a useful tool for mathematical analysis and simulation Interpreted language, easy to learn Use it to facilitate our simulation projects A good tool to plot simulation/experiment results figures for academic papers More powerful than excel Could directly create.eps for Latex 2

Introduction MatLab : Matrix Laboratory Numerical Computations with matrices Every number can be represented as matrix Why Matlab? User Friendly (GUI) Easy to work with Powerful tools for complex mathematics Matlab has extensive demo and tutorials to learn by yourself Use help command 3

Matrices in Matlab To enter a matrix 2 5 3 6 4 1 >> A = [2 5 3; 6 4 1] >> B = [1:1.5:6; 2 3 4 5] >> for i=1:4 for j=1:3 C(i,j)=i*j; end end >> D =[]; D=[D;5]; D=[D;6;7] >> E = zeros(4, 5) 4

Basic Mathematical Operations Remember that every variable can be a matrix! Addition: >> C = A + B Subtraction: >> D = A B Multiplication: >> E = A * B (Matrix multiplication) >> E = A.* B (Element wise multiplication, A and B same size) Division: Left Division and Right Division >> F = A. / B (Element wise division) >> F = A / B = A*inv(B) (A * inverse of B) >> F = A. \ B (Element wise division) >> F = A \ B=inv(A)*B (inverse of A * B) 5

Generating basic matrices Matrix with ZEROS: >> A = zeros(m, n) Matrix with ONES: >> B = ones(m, n) IDENTITY Matrix: >> I = eye(m, n) m Rows n Columns zeros, ones, eye Matlab functions 6

Obtain Information Size(A): return [m n] Length(A): length of a vector Length(A) = max(size(a)) B = A(2:4,3:5) B is the subset of A from row 2 to row 4, column 3 to column 5 A(:, 2)=[] Delete second column 7

Basic Matrix Functions Inv(A): inverse of A Rank(A): rank of matrix A A : transpose of A Det(A): determinant V= eig(a): eigenvalue vector of A [V,D] = eig(a) produces matrices of eigenvalues (D) and eigenvectors (V) of matrix A, so that A*V = V*D 8

Random Number Generators Rand(m,n): matrix with each entry ~ U(0,1) You can use this for the programming project 1 Randn(m,n): standard normal distribution You cannot use this in programming project 1 You must use the polar method I introduced! 9

Basic 2-D Figure Plot Plot(X, Y): Plots vector Y versus vector X Hold: next plot action on the same figure Title( title text here ) Xlabel( ), ylabel( ) Axis([XMIN XMAX YMIN YMAX]) Legend( ) Grid Example demo 10

Elementary Math Function Abs(), sign() Sign(A) = A./abs(A) Sin(), cos(), asin(), acos() Exp(), log(), log10() Ceil(), floor() Sqrt() Real(), imag() 11

Elementary Math Function Vector operation: Max(), min(): max/min element of a vector Mean(), median() Std(), var(): standard deviation and variance Sum(), prod(): sum/product of elements Sort(): sort in ascending order 12

Save fname Save/Load Data Save all workspace data into fname.mat Save fname x y z Save(fname): when fname is a variable Load fname Load fname x y No error in data You can run simulation intermittently Save/load data between runs 13

Input/Output for Text Files Input data file for further analysis in Matlab Run simulation using C matlab is slow in doing many loops Use Matlab for post-data processing Matrix calculation, utilize Matlab math functions Simply use Matlab for figure ploting Excel has constraint on data vector length (<300?) Functions: [A,B ]= Textread(fname, format) Read formated data Use fprintf(), fscanf() similar to C Note that variables here can be vectors/matrices 14

Advanced Graph Subplot(m, n, p) breaks the Figure window into an m-by-n matrix of small axes, selects the p-th axes for the current plot, and returns the axis handle. Semilogx(), semilogy(), loglog() 15

3-D plot x=[0:10]; y=[0:10]; z=x *y; mesh(x,y,z); figure; surf(x,y,z); 100 100 80 80 60 60 40 20 0 10 5 0 0 2 4 6 8 10 40 20 0 10 5 0 0 2 4 6 8 10 16

M-file Script or function Scripts are m-files containing MATLAB statements Functions are like any other m-file, but they accept arguments It is always recommended to name function file the same as the function name function A = changesign(b) % change sign for each element [m,n] = size(b); A = zeros(m,n); for i=1:m for j=1:n A(i,j)= -B(i,j); end end return 17

Online Tutorials Matlab itself contains many tutorials Other online tutorials: http://www.math.siu.edu/matlab/tutorials.html http://www.cs.cmu.edu/~ggordon/780/lecture s/matlab_tutorial.pdf Google search matlab tutorial ppt to find a lot more 18

Example on Using Matlab for Markov Chain Steady State Calculation 19

Discrete-time Markov Chain transition matrix: π P = π, π [1 1 1 1] T = 1 π (P I) = 0, But we cannot use it directly Replace first column in (P-I) with [1 1..1] T to be A, then we can solve the linear equation set by π = [1 0 0 0] A -1 Another way: P*P*P*P 20

Tutorial on Matlab Simulink 21

Graphical programming language Drag and draw line to program Configure each object for parameters Powerful modeling tool Differential Equations Physiological systems Control systems Transfer functions M-file can call a simulink model sim fname Use current workspace variables Simulation results can be saved to workspace variables Thus can be process after simulink 22

Example: Internet Worm Propagation di(t) dt = η I(t) [N I(t)] Ω N: vulnerable population η : worm host average scan rate : scanning IP space size 23

Example 2: RC Circuit Transfer function: 24