How do I express the matlab function abs(M), on a matrix $M$, in mathematical terms?
I thought about norms or just $|M|$, but these return scalars, not another matrix of the same size as $M$.
Sorry for the rough explanation, english isn't my primary language.
I think you can also denote the matrix M by giving its generic (i, j)-entry with parenthesis around:
M = (mij).
So Matlab's "abs(M)" would simply be: (|mij|).