Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Data Structure - Matrix
What is a Matrix?
✍: FYIcenter.com
Matrix is an extension of vector into 2 dimensions
1. Create a matrix object with the matrix() function -
> m = matrix(1:20, nrow=5,ncol=4)
> m
[,1] [,2] [,3] [,4]
[1,] 1 6 11 16
[2,] 2 7 12 17
[3,] 3 8 13 18
[4,] 4 9 14 19
[5,] 5 10 15 20
> typeof(m)
[1] "integer"
> is.matrix(m)
[1] TRUE
> is.vector(m)
[1] FALSE
2. Get matrix length, dimensions and members -
> m = matrix(1:20, nrow=5,ncol=4) > length(m) [1] 20 > dim(m) [1] 5 4 > m[3,2] [1] 8
2023-05-31, ∼1328🔥, 0💬
Popular Posts:
What are browser popup ads for Firefox? Browser popup ads are new browser windows opened by Websites...
Should I edit my PowerPoint document online or offline? If you have Microsoft Office and OneDrive fo...
Should I sign in to Google account after installing Google Chrome 55? When you run Google Chrome 55 ...
How to download and install older versions of Microsoft Office on my Mac computer? I am running macO...
What are Mozilla Firefox 2 add-ons? Mozilla Firefox 2 add-ons extend the browser functionalities. So...