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, 1210🔥, 0💬
Popular Posts:
How to troubleshoot Fitbit device sync issue? My Fitbit device is connected to my Windows computer, ...
How to save word documents into Unicode UTF-8 text files? When I convert Word documents into text fi...
What are browser popup ads for Firefox? Browser popup ads are new browser windows opened by Websites...
Where to find answers to frequently asked questions on Google Chrome? I want to know how to install ...
Why I am getting the "Warning: Unresponsive Script" message box? How to avoid this message box? When...