Hadamard/Schur product of transfer function matrices. Also known as element-wise multiplication. Used by Octave for "sys1 .* sys2".
Example

# Compute Relative-Gain Array
G = tf (Boeing707)
RGA = G .* inv (G).'
# Gain at 0 rad/s
RGA(0)

Package: control