Home page for accesible maths LAB100

Style control - access keys in brackets

Font (2 3) - + Letter spacing (4 5) - + Word spacing (6 7) - + Line spacing (8 9) - +

1 Element-wise Calculation

In RStudio matrices can be thought of as a structured collection of information. In the first workshop you were introduced to vectors as a collection of data that enabled you to perform the same calculation on each value. Likewise, we can treat matrices in a similar manner. Using the matrices defined in the introduction, type and execute the following commands that perform element-wise commands:

E+1

B-A

5*C

3 - D/2

A*B

exp( D )

sqrt( B )

cos( pi*E )

asin( 1/C )

A^2

Note that the last command in each column are performed element-wise and are not matrix multiplication. Therefore, RStudio executes these commands like this:

A*B=[ 1*10-5*16 2*17-3*6  1*8  3*9  2*8  2*12-4*14] A^2=[ 1^2-5^2 2^2-3^2 1^2 3^2 2^2 2^2-4^2]

The element-wise calculations can only be performed when the dimensions of two matrices are identical. Performing the calculation C*D will produced the error message Error in C * D : non-conformable arrays.