lower.triangle {matrixcalc} | R Documentation |
Returns the lower triangle including the diagonal of a square numeric matrix.
lower.triangle(x)
x |
a matrix |
A matrix.
Frederick Novomestky fnovomes@poly.edu
B <- matrix( seq( 1, 16, 1 ), nrow=4, byrow=TRUE ) lower.triangle( B )