Notation: What is the element-wise max notation?

$\begingroup$

For example I have 3 vectors.

$A_1 = (1, 3, 2, 6)$

$A_2 = (6, 1, 9, 1)$

$A_3 = (3, 8, 4, 0)$

$max A_1 = 6$, $max A_2 = 9$, $max A_3 = 8$

What is the proper max notation for element-wise situation?

like:

$MAX(\mathbb{A}) = (6, 8, 9, 6)$

$\endgroup$ 1

1 Answer

$\begingroup$

Let a matrix $A=(A_{ik})_{1\leq i\leq m, \>{1\leq k\leq n}}$ be given. Then we take the max of each column and form the $(n\times 1)$-vector $p$ defined by $$p_k:=\max_{1\leq i\leq m}A_{ik}\ .$$

$\endgroup$

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like