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

Similar documents
CDA6530: Performance Models of Computers and Networks. Chapter 4: 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. Computational Probability and Statistics CIS 2033 Section 003

Introduction to Matlab

Some elements for Matlab programming

Fundamentals of MATLAB Usage

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

Introduction to MatLab. Introduction to MatLab K. Craig 1

Getting Started with MATLAB

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

INTRODUCTION TO MATLAB, SIMULINK, AND THE COMMUNICATION TOOLBOX

Lecturer: Keyvan Dehmamy

Inlichtingenblad, matlab- en simulink handleiding en practicumopgaven IWS

Introduction to MATLAB

MATLAB and Numerical Analysis

Introduction to Octave/Matlab. Deployment of Telecommunication Infrastructures

MATLAB Lecture 1. Introduction to MATLAB

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

Learning from Data Introduction to Matlab

MATLAB Basics EE107: COMMUNICATION SYSTEMS HUSSAIN ELKOTBY

LabVIEW MathScript Quick Reference

CS129: Introduction to Matlab (Code)

Programming in Mathematics. Mili I. Shah

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

A Guide to Using Some Basic MATLAB Functions

MATH 3511 Basics of MATLAB

Introduction to MATLAB

Introduction to MATLAB. CS534 Fall 2016

Grace days can not be used for this assignment

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

Matlab Tutorial, CDS

MATH 5520 Basics of MATLAB

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

Mathematical Operations with Arrays and Matrices

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

A Brief Introduction to MATLAB

A very brief Matlab introduction

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

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

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

Introduction to Matlab

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

Fall 2015 Math 337. Basic MatLab

A Quick Tutorial on MATLAB. Zeeshan Ali

2.0 MATLAB Fundamentals

Introduction to Matlab

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

ENGR Fall Exam 1

UNIVERSITI TEKNIKAL MALAYSIA MELAKA FAKULTI KEJURUTERAAN ELEKTRONIK DAN KEJURUTERAAN KOMPUTER

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

Chapter 1 MATLAB Preliminaries

Introduction to GNU-Octave

Chapter 1 Introduction to MATLAB

Eng Marine Production Management. Introduction to Matlab

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

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

Introduction to Matlab

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

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

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

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

Stokes Modelling Workshop

PART 1 PROGRAMMING WITH MATHLAB

ENGR Fall Exam 1

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

INTRODUCTION TO MATLAB (MATrix LABoratory): INTUITIVE APPROACH

Lecture 2: Variables, Vectors and Matrices in MATLAB

What is MATLAB and howtostart it up?

Introduction to MATLAB

A 30 Minute Introduction to Octave ENGR Engineering Mathematics Tony Richardson

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

Brief Matlab tutorial

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

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

Introduction to MATLAB

Basics. Bilkent University. CS554 Computer Vision Pinar Duygulu

Math Scientific Computing - Matlab Intro and Exercises: Spring 2003

Matlab and Psychophysics Toolbox Seminar Part 1. Introduction to Matlab

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

What is Matlab? A software environment for interactive numerical computations

Introduction to Matlab

BSM510 Numerical Analysis

Getting started with MATLAB

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

Laboratory 1 Octave Tutorial

Introduction to MATLAB programming: Fundamentals

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

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

MATLAB Tutorial. Primary Author: Shoumik Chatterjee Secondary Author: Dr. Chuan Li

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

Introduction to MATLAB

MATLAB for Experimental Research. Fall 2018 Vectors, Matrices, Matrix Operations

A General Introduction to Matlab

A Tour of Matlab for Math 496, Section 6

Quick MATLAB Syntax Guide

Introduction to Matlab. By: Hossein Hamooni Fall 2014

MATLAB Functions and Graphics

Short Introduction into MATLAB

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

Transcription:

CDA5530: Performance Models of Computers and Networks Chapter 8: 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

To enter a matrix Matrices in Matlab 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) Randn(m,n): standard normal distribution 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

Subplot(m, n, p) Advanced Graph 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

Script or function M-file 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 m,n] = size(b); A = zeros(m,n); for i=1:m for j=1:n A(i,j)= -B(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

Tutorial on Matlab Simulink 19

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 20

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