BayES BayES

2.3 Matrices and matrix calculations

2.3.1 Defining and using matrices

Matrices can be defined using square brackets. Example 2.2 shows how this is accomplished. It also shows how to define matrices using other matrices as blocks and how to perform basic arithmetic operations on matrices.

Example 2.2
▼ Input ▼ Output
 
// A is a 2x3 matrix 
A = [1, 2, 3; 
     4, 5, 6]; 
print(A); 
 
// White space is irrelevant. All 
// that matters is that columns are 
// separated by "," and rows by ";". 
B = [1,2,3; 4,5,6]; 
print(B); 
 
// B is equal to A 
print(A-B); 
 
// Arithmetic operations on matrices 
C = 3*A - 2*(B+A); 
print(C); 
 
// Take the transpose of C 
D = C; 
print(D); 
 
// Create E by defining its blocks: 
// 1 -> a 3x1 vector 
// 2 -> a 3x2 matrix 
E = [ [1;2;3], 2*D ]; 
print(E); 
 
 

 
A = 
  1  2  3 
  4  5  6 
 
 
B = 
  1  2  3 
  4  5  6 
 
 
A-B = 
  0  0  0 
  0  0  0 
 
 
C = 
  -1  -2  -3 
  -4  -5  -6 
 
 
D = 
  -1  -4 
  -2  -5 
  -3  -6 
 
 
E = 
    1   -2   -8 
    2   -4  -10 
    3   -6  -12

2.3.2 Indexing matrices and the range operator

The entries of matrices can be accessed using parentheses after the matrix id value. For example, if A is a matrix currently in memory, the statement:

b = A(3,4);

will take the element of A located in the 3rd row, 4th column and store it in an item with id value b.

When you want to access consecutive entries in a matrix you have to use the range operator, “:". When the range operator is preceded and followed by positive integers, i and j, respectively, with i < j, it is taken to mean “from i to j". For example, the statement:

C = A(2:3,4);

will take the entries of A located in rows 2 to 3, column 4 and store them in a 2 ×1 matrix C.

When the range operator is not preceded and not followed by integers, it is taken to mean “all items in the respective dimension". For example, the statement:

D = A(:,4);

will take the entire 4th column of A and store it in a matrix (column vector) D.

Finally, when a single range operator is used to index the elements of a vector or matrix, A, then all entries of A are requested. That is, all three statements:

D = A; 
D = A(:,:); 
D = A(:);

are equivalent when A is a matrix, and they create a copy of A into a matrix with id value D.

Example 2.3 puts all these together, while Example 2.4 shows how indexing is performed and how the range operator can be used in the left-hand side of assignment statements to alter a block of a matrix already in memory. It also shows how to copy the entries of a matrix A into another matrix B, respecting the dimensions of the left-hand-side matrix.

Example 2.3
▼ Input ▼ Output
 
// Define A as a 4x4 matrix 
A = [ 1, 2, 3, 4; 
     -1,-2,-3,-4; 
      8, 7, 6, 5; 
     -4,-5,-6,-8 
    ]; 
 
// b is the entry of A in row 3, 
// column 4 
b = A(3,4); 
print(b); 
 
// Print the elements in rows 2 to 3, 
// column 4 
print(A(2:3,4)); 
 
// Print the 4th column of A 
print(A(:,4)); 
 
// Print the 1st row of A 
print(A(1,:));

 
b = 
  5 
 
 
A(2:3,4) = 
  -4 
  5 
 
 
A(:,4) = 
  4 
  -4 
  5 
  -8 
 
 
A(1,:) = 
  1  2  3  4 
 
 

Example 2.4
▼ Input ▼ Output
 
/* Define A as a 3x2 matrix of random 
draws from an exponential distribution 
with rate 2.5 and print it */ 
A = exprnd(2.5,3,2); 
print(A); 
 
// Make the entry in row 2, column 1 
// of A equal to one and print A 
A(2,1) = 1; 
print(A); 
 
// Make the first row of A equal to a 
// vector of zeros 
A(1,:) = zeros(1, cols(A)); 
print(A); 
 
// Define B as a 3x2 matrix of zeros 
// and assign the entries of A to it 
B = zeros(2,3); 
B(:) = A; 
print(A); 
print(B); 
 
/* A and B have different dimensions 
but the same number of entries. The 
entries of A are stored in B in a 
column-major fashion */

 
A = 
   0.20604   1.10341 
  0.170939  0.142362 
  0.535967  0.360443 
 
 
A = 
   0.20604   1.10341 
         1  0.142362 
  0.535967  0.360443 
 
 
A = 
         0         0 
         1  0.142362 
  0.535967  0.360443 
 
 
A = 
         0         0 
         1  0.142362 
  0.535967  0.360443 
 
 
B = 
         0  0.535967  0.142362 
         1         0  0.360443

2.3.3 Element-wise operators

Matrix addition and subtraction work, as expected, in an element-wise fashion: if A and B are two M ×N matrices and C = A + B, then C is defined such that cij = aij + bij, i = 1,M,j = 1,N. Matrix-matrix multiplication, again as expected, works in a non-element-wise fashion: if A is an M ×K matrix, B is a K ×N matrix and C = A B, then C is an M ×N matrix such that:

cij = k=1Ka ik bkji = 1,M,j = 1,N

However, very frequently in practice, one needs to do element-wise multiplication, division or exponentiation of matrices. As it is common in other matrix languages, BayES defines the following element-wise operators:

Example 2.5 shows how these operators can be used.

Example 2.5
▼ Input ▼ Output
 
// Define matrices 
A = [ 1, 2; 
      3, 4]; 
B = [ 5, 4; 
      2, 1]; 
 
// Element-wise multiplication 
print(A.*B); 
 
// Element-wise division 
print(A./B); 
 
// Element-wise exponentiation 
print(A.^B); 

 
A.*B = 
  5  8 
  6  4 
 
 
A./B = 
  0.2  0.5 
  1.5    4 
 
 
A.^B = 
   1  16 
   9   4 
 

2.3.4 Operator precedence

Arithmetic operations contained in an expression are evaluated in the following order:

  1. expressions inside parentheses – (...)

  2. transposition (′), scalar and element-wise exponentiation (^, .^)

  3. unary minus (-)

  4. matrix and element-wise multiplication (*, .*), scalar and element-wise division (/, ./)

  5. addition (+) and subtraction (-)

Operators with equal precedence are evaluated from left to right.

As an example, consider the expression:

B*A^2 - 0.5^-2*(A+B)

where A and B are 2 ×2 matrices:

A = 1 2 3 4 and B = 2 3 1 2

The expression above is evaluated in the following way:

pict

2.3.5 Functions operating on matrices

BayES provides an array of functions that take matrices as arguments and return matrices. These include:

Detailed descriptions of these functions are given in Appendix B.

Share this content:
Facebook Twitter LinkedIn Email
© 2016–20 Grigorios Emvalomatis