diagmul: Multiplication of a tensor with a tensor given by its...

Description Usage Arguments Details Value Author(s) See Also Examples

Description

This is a convenience function for scaling elements of a tensor with different numbers based on their position in the tensor.

Usage

1

Arguments

X

The tensor to be scaled

D

A tensor containing scaling constants

i

numeric of character vector giving the dimensions of X to be used for the product.

j

numeric of character vector giving the dimensions of D to be used for the product.

by

Every operation is parallel for all levels of by in X and/or D.

Details

Let

X_{i_1… i_d k_1 … k_d}

and

D_{j_1… j_d}

than the result is:

E_{i_1… i_d k_1 … k_d}=X_{i_1… i_d k_1 … k_d}D_{j_1… j_d}

Value

A tensor with the shape and dimensions as X with entries X_ik scaled by D_im, where i and k can represent multi-indices.

Author(s)

K. Gerald van den Boogaart

See Also

to.tensor

Examples

1
2
3
4
5
6
(A <- matrix(rep(1:3,each=3),nrow=3))
(b <- to.tensor(c(1,1/2,1/3)))
diagmul.tensor(as.tensor(A),2,as.tensor(c(1,1/2,1/3)),1)
diagmul.tensor(as.tensor(A),1,as.tensor(c(1,1/2,1/3)),1)
A %*% diag(b)
diag(b) %*% A

tensorA documentation built on Nov. 20, 2020, 9:07 a.m.

Related to diagmul in tensorA...