https://github.com/cran/pracma
Raw File
Tip revision: c69aa96969f2c9b1cbf8c3970f9dc394bfcbd550 authored by Hans W. Borchers on 07 December 2021, 05:30:02 UTC
version 2.3.6
Tip revision: c69aa96
diag.R
##
##  m t r a c e . R  Test suite
##

Diag <- pracma::Diag

all.equal(Diag(matrix(1:12,3,4),  1), c(4,8,12))
all.equal(Diag(matrix(1:12,3,4), -1), c(2,6))
identical(Diag(Diag(c(1,5,9)), 0), c(1,5,9))
back to top