Kmobil
Kmobil

Reputation: 11

Matrix multiplication, element by element

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

Answers (1)

jmetz
jmetz

Reputation: 12783

You mean the Hadamard product?

Upvotes: 3

Related Questions