Reputation: 11
Is it possible to express Matlab operation A.*B (multiplication element by element)
A.*B = [a11 * b11, a12 * b12, ..., a1n * b1n; ...; am1 * bm1, ..., amn * bmn]
by a common matrix algebra?
Upvotes: 1
Views: 853
Reputation: 12783
You mean the Hadamard product?
Upvotes: 3