R/vector.power10.R

vector.power10 <-
function (str.vec)
{
    retvec <- rep(NA, length(str.vec))
    for (i in seq(along = str.vec)) {
        retvec[i] <- power10(str.vec[i])
    }
    return(retvec)
}
Auburngrads/SMRD documentation built on Sept. 14, 2020, 2:21 a.m.