Swaps the matrix list with a cube
Examples
# Create matrix list
matLst <- cvPost(10, lotri::lotri(a+b~c(1, 0.25, 1)), 3)
print(matLst)
#> [[1]]
#> a b
#> a 0.8455872 0.1187144
#> b 0.1187144 1.1275077
#>
#> [[2]]
#> a b
#> a 1.709917 1.423123
#> b 1.423123 1.725652
#>
#> [[3]]
#> a b
#> a 0.9832829 0.1419052
#> b 0.1419052 1.4302766
#>
# Convert to cube
matCube <- swapMatListWithCube(matLst)
print(matCube)
#> , , 1
#>
#> a b
#> a 0.8455872 0.1187144
#> b 0.1187144 1.1275077
#>
#> , , 2
#>
#> a b
#> a 1.709917 1.423123
#> b 1.423123 1.725652
#>
#> , , 3
#>
#> a b
#> a 0.9832829 0.1419052
#> b 0.1419052 1.4302766
#>
# Convert back to list
matLst2 <- swapMatListWithCube(matCube)
print(matLst2)
#> [[1]]
#> a b
#> a 0.8455872 0.1187144
#> b 0.1187144 1.1275077
#>
#> [[2]]
#> a b
#> a 1.709917 1.423123
#> b 1.423123 1.725652
#>
#> [[3]]
#> a b
#> a 0.9832829 0.1419052
#> b 0.1419052 1.4302766
#>
