MATLAB arrays support matrix operations and element operations. For example, M*N and M.*N. This is a quite intuitive way to distinguish the two di
M*N
M.*N
As other answers say, overloading operator.* is not possible.
operator.*
But I got a good solution for your question, check here.
You can provide any methods in operator-ish form like:
M N