MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones...

65
MATLAB

Transcript of MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones...

Page 1: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

MATLAB

Page 2: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Generating Vectors from functions zeros(M,N) MxN matrix of zeros

ones(M,N) MxN matrix of ones

rand(M,N) MxN matrix of uniformly distributed

random

numbers on (0,1)

x = zeros(1,3)

x =

0 0 0

x = ones(1,3)

x =

1 1 1

x = rand(1,3)

x =

0.9501 0.2311 0.6068

Page 3: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Numeric Arrays

Two-dimensional arrays, called a matrix in MATLAB often

Size = rows by columns [r c] = size(array_name) if array_name is a matrix size will work for n-dimension arrays and output

size of each dimension into a row vector Basic matrix creation:

Page 4: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Numeric Arrays

How do you multiply to arrays element-by-element? Do it in a for loop

Very slow, avoid whenever possible Use element-by-element operations Addition and subtraction are the same: +, - Multiplication, right and left division and

exponentiation use “.” before the symbol i.e. foo.*bar or foo./bar or foo.^3

Page 5: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Numeric Arrays

Examples of element-by-element operation results

Page 6: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Numeric Arrays Matrix operations

Matrix operations are the same symbols as standard scalar operations

Apply when multiplying or dividing matrices

Page 7: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Numeric Arrays Useful built-in functions for working with

arrays Size, linspace and logspace were already

mentioned Num_of_elements = length(array)

Returns the length of the longest dimension Max_val = max(array)

Returns the largest element in the array if it is a vector Returns a row vector of the largest element if the array is

a matrix min_val = min(array)

Same as max, but returns the minimum values

Page 8: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Numeric Arrays

sum(array) Returns the sum of a vector or a row vector of the

sum of each column find(array)

Returns an array with the locations of the nonzero elements of the array

Page 9: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Numeric Arrays

When dealing with numeric arrays, the clear function can come in handy If you have foo declared as a 2x2 array Then create two 5x1 arrays, x and y Try to do: foo(:,1) = x Produces an error because MATLAB thinks foo

should be a 2x2 array and x won’t fit into the first column of foo

Use clear to reset foo

Page 10: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Numeric Arrays

MATLAB can create several special matrices Identity, zeros and ones Useful for initializing matrices to ones, zeros or

when you may need to use the identity matrix MATLAB also has functions to check for

NaN, inf, or if an array is empty isnan, isempty, isinf

Page 11: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Cell Arrays

A cell array is an array where each element can contain another array with different dimensions if needed

Cell arrays can hold different classes of arrays

Cell arrays aren’t used too much in most MATLAB sessions I’ve only used them for one type of FILE I/O They are used in some toolboxes too

Page 12: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Cell Arrays Creating a cell array is very similar to creating

a numerical array To create a cell array, use {} instead of []

Cell arrays can also be created one element at a time or pre-allocated and then defined

Page 13: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Cell Arrays

Indexing a cell array is more complex than a numeric array

To display a list of each cell and the type of array in each cell: A(:) cellplot(A) will give a graphical representation of the cell

array To display the contents of each cell: A{:} To go into an array in a given cell location use a

combination of () and {} A{1}(2,2) will return the element at (2,2) for the array in

the first cell of A

Page 14: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Structures

Structures are a MATLAB data type used to store different types of data in a single unit

A structure consists of fields Each field contains an array of some

MATLAB type Actually similar to a cell array in that it

combines different sized arrays of various data types into one entity

Page 15: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Structures Two ways to create a structure in MATLAB

Define each field of a structure individually Structure_name.field_name

Use the struct function call

Page 16: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Structures

One more example

Page 17: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Structure Arrays

MATLAB can create arrays of structures Just add in the index of the array location before

the field name

Can create n-dimension structure arrays

Page 18: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Structure Arrays

Indexing structures and structure arrays can get complicated You need to specify location in structure array,

field name and field location Structures can contain cell arrays, further

complicating things Nested structures are possible too

Page 19: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Structure Arrays Some simple examples

See MATLAB help for much more in-depth discussion on structures or cell arrays for that matter

Page 20: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Strings

Strings are just character arrays Can be multidimensional However, then each string is required to be the

same length to keep array rectangular Cell arrays are handy for multiple strings of

different length File I/O of characters (discussed later today)

Page 21: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Strings

Examples We’ve already seen many examples scattered

throughout the first two lectures, but here a few more

Page 22: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Strings

Useful functions String manipulation: sprintf, strcat, strvcat,

sort, upper, lower, strjust, strrep, strtok, deblank, etc.

String comparisons Should use strcmp when comparing strings If you have two strings A and B, A==B will give a row

vector of results for each character Strcmp will compare the entire string, or a subset if you

want

Page 23: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

M-Files

M-files are essentially script files where you can place a bunch of MATLAB commands and execute the m-file repeatedly Can have everything in an m-file, function calls,

variable allocation, function definitions, figure generation and modification, etc

Nearly everything will probably be done in an m-file, rather than at the command prompt

Page 24: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

M-Files

MATLAB has the editor window for creating, editing, debugging, running and saving m-files

MATLAB color codes m-files for easier reading

There is also real-time syntax checking Essentially spell check for code

Page 25: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Use of M-File

Click to create a new M-File

• Extension “.m” • A text file containing script or function or program to run

Page 26: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Use of M-File

If you include “;” at the end of each statement,result will not be shown immediately

Save file as Denem430.m

Page 27: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Command line

Make sure current path (pwd) cd to your m-file directory edit m1.m type m1.m To run the m1 (>>m1)

Page 28: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Flow Control

if for while break ….

Page 29: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Programming with Matlab

Relational operators < less than <= less than or equal to > greater than >= greater than or equal to = = equal to ~= not equal to Logical operations ~ not & and | or xor(a,b) exclusive or

Page 30: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Control Structures

If Statement Syntax

if (Condition_1)Matlab Commands

elseif (Condition_2)Matlab Commands

elseif (Condition_3)Matlab Commands

elseMatlab Commands

end

Some Dummy Examples

if ((a>3) & (b==5)) Some Matlab Commands;end

if (a<3) Some Matlab Commands;elseif (b~=5) Some Matlab Commands;end

if (a<3) Some Matlab Commands;else Some Matlab Commands;end

Page 31: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Control Structures

For loop syntax

for i=Index_Array

Matlab Commands

end

Some Dummy Examples

for i=1:100 Some Matlab Commands;end

for j=1:3:200 Some Matlab Commands;end

for m=13:-0.2:-21 Some Matlab Commands;end

for k=[0.1 0.3 -13 12 7 -9.3] Some Matlab Commands;end

Page 32: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Control Structures

While Loop Syntax

while (condition)

Matlab Commands

end

Dummy Example

while ((a>3) & (b==5)) Some Matlab Commands;end

Page 33: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

switch expressioncase value(1)

statement(1)case value(2)

statement(2)…case value(n-1)

statement(n-1)otherwise

statement(n)end

Page 34: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

m2.m

y = [3 4 5 9 2];for i = 1:length(y)

if rem(y(i),3)==0fprintf('y(%g)=%g is 3n.\n', i, y(i));

elseif rem(y(i), 3)==1fprintf('y(%g)=%g is 3n+1.\n', i , y(i));

elsefprintf('y(%g)=%g is 3n+2.\n', i , y(i));

endend

Page 35: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

m3.m

for i = 1:1000

if prod(1:i) > 1e100

fprintf('%g! = %e > 1e100\n', i, prod(1:i));

break;

end

end

Page 36: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

m4.m

for month = 1:12switch month

case {3,4,5}season = 'Spring';

case {6,7,8}season = 'Summer';

case {9,10,11}season = 'Autumn';

case {12,1,2}season = 'Winter';

endfprintf('Month %d ===> %s.\n', month, season);

end

Page 37: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Function

A function file is useful when you need to repeat a set of commands several times.

function [output variables] = function_name(input variables);

All the variables in a function file are local, (i) output variables are enclosed in square brackets, the square

brackets are optional when there is only one output. (ii) input variables are enclosed with parentheses (iii) function_name must be the same as the filename in which it

is saved (with the .m extension) (iv) function is called by its name

Page 38: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Myfun.m

function [a b c] = myfun(x, y)b = x * y; a = 100; c = x.^2;

myfun(2,3) % called with zero outputsu = myfun(2,3) % called with one output[u v w] = myfun(2,3) % called with all outputs

Page 39: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

func3.m

function [ave1, ave2] = func3(vector1, vector2);

ave1 = sum(vector1)/length(vector1);

ave2 = sum(vector2)/length(vector2);

[a, b] = func3([1 2 3], [4 5 6 7 8])

Page 40: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

func4.m

function [ave1, ave2] = func4(vector1, vector2)if nargin == 1 % only one variable

ave1 = sum(vector1)/length(vector1);endif nargout == 2 % two variables

ave1 = sum(vector1)/length(vector1);ave2 = sum(vector2)/length(vector2);

end

[a, b] = func4([1 2 3], [4 5 6 7 8]) c = func4([1 3 5 7 9]) bar(sin(func4([1 3 5 7 9])))

Page 41: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

41

Elementary Math Function

Abs(), sign() Sign(A) = A./abs(A)

Sin(), cos(), asin(), acos() Exp(), log(), log10() Ceil(), floor() Sqrt() Real(), imag()

Page 42: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

I/O

fid = fopen(‘1.txt','r'); i = 1; while ~feof(fid) name(i,:) = fscanf(fid,'%5c',1); year(i) = fscanf(fid,'%d',1); no1(i) = fscanf(fid,'%d',1); no2(i)=fscanf(fid,'%d',1); no3(i)=fscanf(fid,'%g',1); no4(i)=fscanf(fid,'%g\n'); i=i+1; year end fclose(fid);

Page 43: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Alt.

name{i} = fscanf(fid, ‘%s’, 1);

Page 44: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

1.txt

John 1995 12 5 2.3 4.5 Mary 1975 2 12 4.5 5.3

Page 45: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

time

tic % start inv(rand(500)); % Matrix inverse.

toc

Page 46: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

t0 = cputime; % time now a = inv(rand(500)); % cpuTime = cputime-t0 % cpu time

I/O time are ingored

Page 47: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Time for every command

profile on -detail mmex for i = 1:1000 a = inv(rand(100)); b = mean(rand(100)); end profile off profile report

Page 48: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Basic Plotting

plot(x,y) Basic MATLAB plotting command Creates figure window if not already created Autoscales each axis to fit data range Can add axes object properties after x,y

figure(n) Will create a new figure window MATLAB will use current figure window by default Plot command will overwrite figure if called repeatedly

given same current figure window

Page 49: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Basic Task: Plot the function sin(x) between 0≤x≤4π

Create an x-array of 100 samples between 0 and 4π.

Calculate sin(.) of the x-array

Plot the y-array

>>x=linspace(0,4*pi,100);

>>y=sin(x);

>>plot(y)0 10 20 30 40 50 60 70 80 90 100

-1

-0.8

-0.6

-0.4

-0.2

0

0.2

0.4

0.6

0.8

1

Page 50: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Plot the function e-x/3sin(x) between 0≤x≤4π Create an x-array of 100 samples between 0

and 4π.

Calculate sin(.) of the x-array

Calculate e-x/3 of the x-array

>>x=linspace(0,4*pi,100);

>>y=sin(x);

>>y1=exp(-x/3);

Page 51: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Plot the function e-x/3sin(x) between 0≤x≤4π Multiply the arrays y and y1 correctly

Plot the y2-array

>>y2=y.*y1;

>>plot(y2)

0 10 20 30 40 50 60 70 80 90 100-0.3

-0.2

-0.1

0

0.1

0.2

0.3

0.4

0.5

0.6

0.7

Page 52: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Practice

plot(x,sin(x), x, cos(x), x, sin(x)+cos(x));

Figure(2);

plot(x, sin(x), 'o', x, cos(x), 'x', x, sin(x)+cos(x), '*');

plot(x, y,'k:diamond') grid on

Page 53: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

plot color

Plot-color color RGB

b (Blue) (0,0,1)

c (Cyan) (0,1,1)

g (Green) (0,1,0)

k (Black) (0,0,0)

m (Magenta) (1,0,1)

r (Red) (1,0,0)

w (White) (1,1,1)

y (Yellow) (1,1,0)

Page 54: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Modifying Plots

Line markers Can choose to add markers at each data point Can have only markers, no line

Page 55: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Modifying Plots

Line width Specified by an integer, default is 0.5 points Each point is 1/72 of an inch

Line style

Page 56: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

x = peaks %generate a 49*49 matrix y = x'; plot(x, y);

Page 57: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Display Facilities

title(.)

xlabel(.)

ylabel(.)

>>title(‘This is the sinus function’)

>>xlabel(‘x (secs)’)

>>ylabel(‘sin(x)’)0 10 20 30 40 50 60 70 80 90 100

-1

-0.8

-0.6

-0.4

-0.2

0

0.2

0.4

0.6

0.8

1This is the sinus function

x (secs)

sin(

x)

Page 58: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Subplots

h = subplot(m,n,p) or subplot(mnp)h = subplot(m,n,p,'replace') Three typical syntax uses for subplot command Subplot will generate m by n subplots on a figure

object p specifies which subplot to create out of the m*n

total ‘replace’ will overwrite any subplot in that current

position

Page 59: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Subplots

Page 60: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Subplots

Page 61: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

x = 0:0.1:4*pi; subplot(2, 2, 1); plot(x, sin(x)); subplot(2, 2, 2); plot(x, cos(x)); subplot(2, 2, 3); plot(x, sin(x).*exp(-x/5)); subplot(2, 2, 4); plot(x, x.^2);

Page 62: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Bar Graphs MATLAB will plot horizontal and vertical bar graphs

Page 63: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Modifying Plots

set(h,'PropertyName',PropertyValue,...) The set command takes object handle h and sets

property values for give property names for that object handle If h is an array, the property values will be set for all

object handles in h

a = get(h,'PropertyName') get returns the value of a given property

Page 64: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

Modifying Plots

gcf stands for get current figure handle Will return handle of current figure

gca stands for get current axis handle Will return handle of current axis

These two commands are very useful when used in conjunction with the set and get commands

Allows you to edit the properties of the current figure or axis without having the handle specified in a variable

Page 65: MATLAB. Generating Vectors from functions zeros(M,N)MxN matrix of zeros ones(M,N)MxN matrix of ones rand(M,N)MxN matrix of uniformly distributed random.

x = 0:0.1:4*pi; plot(x, sin(x)+sin(3*x)) set(gca, 'ytick', [-1 -0.3 0.1 1]); set(gca, 'yticklabel', {'min.', 'point 1', 'point 2',

'max. '}); grid on