Nothing
## File Name: tam_generate_B_fixed_estimated.R
## File Version: 9.08
tam_generate_B_fixed_estimated <- function(B)
{
dimB <- dim(B)
I <- dimB[1]
K <- dimB[2]
D <- dimB[3]
B.fixed.estimated <- matrix( 0, nrow=I*K*D, ncol=4 )
vv <- 1
for (ii in 1:I){
for (kk in 1:K){
for (dd in 1:D){
B.fixed.estimated[vv, 1:4] <- c( ii, kk, dd, B[ ii, kk, dd ] )
vv <- vv + 1
}
}
}
return(B.fixed.estimated)
}
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.