Search notes:

R: matrix class

A matrix might be created with cbind():
m <- cbind(foo = 1:3, bar = 4:6, baz = 10:12)

class(m)
# [1] "matrix"
Github repository about-r, path: /classes/matrix/cbind.R

TODO

Compare with data structure matrix.

See also

is.matrix()
R classes
The matrix data structure

Index