View source: R/gen-namespace.R
torch_block_diag | R Documentation |
Create a block diagonal matrix from provided tensors.
torch_block_diag(tensors)
tensors |
(list of tensors) One or more tensors with 0, 1, or 2 dimensions. |
if (torch_is_installed()) {
A <- torch_tensor(rbind(c(0, 1), c(1, 0)))
B <- torch_tensor(rbind(c(3, 4, 5), c(6, 7, 8)))
C <- torch_tensor(7)
D <- torch_tensor(c(1, 2, 3))
E <- torch_tensor(rbind(4, 5, 6))
torch_block_diag(list(A, B, C, D, E))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.