You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _posts/2014-03-21-simple-array-class.md
+5-2
Original file line number
Diff line number
Diff line change
@@ -28,7 +28,10 @@ partial model matrices where the entries in the vector `X%*%theta` (with
28
28
`nd*...*n2*n1` entries) are the same as the entries in the array with
29
29
dimension `c(n1, n2, ..., nd)` returned by `RH(Xd, ... , RH(X2, RH(X1,
30
30
Theta))...)`.
31
-
`Theta` is an array with dimensions `c(c1, c2, ..., cd)` containing `theta` and `RH(X, A)` -- the "rotated H-transform" -- is an operation generalizing transposed pre-multiplication `t(X %*% A)` of a matrix `A` by a matrix `X` to the case of higher dimensional array-valued `A`.
31
+
`Theta` is an array with dimensions `c(c1, c2, ..., cd)` containing `theta`
32
+
and `RH(X, A)` -- the "rotated H-transform" -- is an operation generalizing
33
+
transposed pre-multiplication `t(X %*% A)` of a matrix `A` by a matrix `X` to
34
+
the case of higher dimensional array-valued `A`.
32
35
33
36
The code below implements a simple array class for numeric arrays and the
34
37
rotated H-transform in `RcppArmadillo` and compares the performance to both
Copy file name to clipboardExpand all lines: src/2014-03-21-simple-array-class.Rmd
+4-1
Original file line number
Diff line number
Diff line change
@@ -26,7 +26,10 @@ partial model matrices where the entries in the vector `X%*%theta` (with
26
26
`nd*...*n2*n1` entries) are the same as the entries in the array with
27
27
dimension `c(n1, n2, ..., nd)` returned by `RH(Xd, ... , RH(X2, RH(X1,
28
28
Theta))...)`.
29
-
`Theta` is an array with dimensions `c(c1, c2, ..., cd)` containing `theta` and `RH(X, A)` -- the "rotated H-transform" -- is an operation generalizing transposed pre-multiplication `t(X %*% A)` of a matrix `A` by a matrix `X` to the case of higher dimensional array-valued `A`.
29
+
`Theta` is an array with dimensions `c(c1, c2, ..., cd)` containing `theta`
30
+
and `RH(X, A)` -- the "rotated H-transform" -- is an operation generalizing
31
+
transposed pre-multiplication `t(X %*% A)` of a matrix `A` by a matrix `X` to
32
+
the case of higher dimensional array-valued `A`.
30
33
31
34
The code below implements a simple array class for numeric arrays and the
32
35
rotated H-transform in `RcppArmadillo` and compares the performance to both
0 commit comments