Matrix multiplication, element by element
Is it possible to express Matlab operation A.*B (multiplication element by element)
A.*B = [a11 * b11, a12 * b12, ...,开发者_如何学Go a1n * b1n; ...; am1 * bm1, ..., amn * bmn]
by a common matrix algebra?
You mean the Hadamard product?
精彩评论