Matrix within a Matrix
Hello everyone,
I have the following matrices:
x = (15 -17) y = (-6 20) z = (55 -75)
I would like to combine them to form a new matrix such as,
A = (x y z)
I'm thinking (not sure if its right) A would turn up to be a 1x6 matrix.
A = (15 -17 -6 20 55 -75)
Then I would like to get the maximum absolute value of A which if everything is possible up to this point then the result would be 75.
Any suggestions?
Thanks!


