Last chance! 50% off unlimited learning
Sale ends in
This function returns the Hadamard or Shur product of two matrices, x and y, that have the same row and column dimensions.
hadamard.prod(x, y)
a numeric matrix or vector object
a numeric matrix or vector object
A matrix.
The Hadamard product is an element-by-element product of the two matrices. Let
Hadamard, J (1983). Resolution d'une question relative aux determinants, Bulletin des Sciences Mathematiques, 17, 240-246.
Styan, G. P. H. (1973). Hadamard Products and Multivariate Statistical Analysis, Linear Algebra and Its Applications, Elsevier, 6, 217-240.
# NOT RUN {
x <- matrix( c( 1, 2, 3, 4 ), nrow=2, byrow=TRUE )
y <- matrix( c( 2, 4, 6, 8 ), nrow=2, byrow=TRUE )
z <- hadamard.prod( x, y )
print( z )
# }
Run the code above in your browser using DataLab