This file is indexed.

/usr/lib/R/site-library/expm/doc/expm.R is in r-cran-expm 0.99-1.1-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
### R code from vignette source 'expm.Rnw'

###################################################
### code chunk number 1: expm.Rnw:49-55
###################################################
library(expm)
m <- matrix(c(4, 1, 1, 2, 4, 1, 0, 1, 4), 3, 3)
expm(m)
dimnames(m) <- list(letters[1:3], LETTERS[1:3])
m
expm(m)