w3resource

R Programming: Create a matrix taking a given vector of numbers as input and define the column and row names

R Programming: Matrix Exercise-3 with Solution

Write a R program to create a matrix taking a given vector of numbers as input and define the column and row names. Display the matrix.

Sample Solution:

R Programming Code:

row_names = c("row1", "row2", "row3", "row4")
col_names = c("col1", "col2", "col3", "col4")
M = matrix(c(1:16), nrow = 4, byrow = TRUE, dimnames = list(row_names, col_names))
print("Original Matrix:")
print(M)

Sample Output:

[1] "Original Matrix:"
     col1 col2 col3 col4
row1    1    2    3    4
row2    5    6    7    8
row3    9   10   11   12
row4   13   14   15   16                

R Programming Code Editor:



Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a R program to create a matrix taking a given vector of numbers as input. Display the matrix.
Next: Write a R program to access the element at 3rd column and 2nd row, only the 3rd row and only the 4th column of a given matrix.

Test your Programming skills with w3resource's quiz.

What is the difficulty level of this exercise?



Follow us on Facebook and Twitter for latest update.