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, 1084🔥, 0💬
Popular Posts:
Where to find answers to frequently asked questions on Mozilla Firefox? I want to know how to know h...
Why I am getting the "Opening ChromeSetup.exe" dialog box when trying to install Google Chrome 31 on...
How to unzip a Word Document .docx file? According to Microsoft documentation, a .docx file is reall...
How to add or change the footer on a layout in PowerPoint? I want my slide footers to have the same ...
How to see the key exchange process in an SFTP connection with FileZilla FTP Client? If you are conn...