Nothing
context("minij matrices")
# SPD minij matrix ---------------------------------------------------------
test_that("SPD minij matrix", {
A <- minij(10)
for(i in 1:nrow(A)){
for(j in i:nrow(A)){
expect_equal(A[i,j], i)
expect_equal(A[j,i], i)
}
}
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.