What are Matrices?
Matrices are the R objects wherein the elements are organized in a 2-D rectangular shape. In a matrix, it contains elements of the same atomic types.
The matrix function is denoted as a matrix().
Syntax
matrix(data, nrow, ncol, byrow, dimnames)
Accessing Elements of a matrix
Any row or column element can be accessed by using the column and row index.
Example:
#Defining the column and row names
rn = c("r1", "r2", "r3", r4")
cn = c("c1", "c2", "c3")
#Creating the matrix
A <- matrix(c(1:12), nrow = 4, byrow = TRUE, dimnames= list(rn, cn))
#Accessing 2nd row, 3rd column element
print(A[2,3])
#Accessing elements of 4th column
print(A[ ,4])
Output:
[1] 6
row1 row2 row3 row4
3 6 9 12
Matrix Computations
Different types of mathematical operations such as matrix addition, subtraction, multiplication, and division can be performed on the matrices using R Programming operators.
To learn in depth, we recommend you our amazing Data Science certification course.
Our Data Science Courses Duration and Fees
Cohort starts on 4th Feb 2025
₹65,037
Cohort starts on 28th Jan 2025
₹65,037
Cohort starts on 14th Jan 2025
₹65,037