probString2Numeric {arvoRe}R Documentation

Usage

probString2Numeric(probMAT)

Arguments

probMAT

Examples

##---- Should be DIRECTLY executable !! ----
##-- ==>  Define data, use random,
##--    or do  help(data=index)  for the standard data sets.

## The function is currently defined as
function(probMAT) {
        n.lin <- dim(probMAT)[1]
        n.col <- dim(probMAT)[2]
        
        ans <- matrix(, n.lin, n.col)
        
        for (i in 1:n.lin) {
                for (j in 1:n.col) {
                        ans[i,j] <- exec.text(probMAT[i,j])
                }
        }
        return(ans)
  }

[Package arvoRe version 0.1.7 Index]