powered by
Compute the other diagonal identity matrix. The result is basically a fast version of diag(n)[, n:1].
diag(n)[, n:1]
diagX(n)
a numeric \(n \times n\) matrix with many zeros -- apart from
1s in the other diagonal.
1
positive integer.
Martin Maechler, 1992.
diag.
diag
diagX(4) for(m in 1:5) stopifnot(identical(diagX(m), diag(m)[, m:1, drop = FALSE]))
Run the code above in your browser using DataLab