R/tam_AXsi_compute.R

Defines functions tam_AXsi_compute

Documented in tam_AXsi_compute

## File Name: tam_AXsi_compute.R
## File Version: 0.02

tam_AXsi_compute <- function(A, xsi)
{
    dA <- dim(A)
    AX <- matrix( NA, nrow=dA[1], ncol=dA[2] )
    for (kk in 1:( dA[2] ) ){
        AX[,kk] <- A[,kk,] %*% xsi
    }
    return(AX)
}

Try the TAM package in your browser

Any scripts or data that you put into this service are public.

TAM documentation built on Aug. 29, 2022, 1:05 a.m.