Hi,
If I have a vector c = [ a , 1 ]T where the element a is a vector. If I multiply c by its transpose:
cTc
is this defined? How do I calculate the a*a? Matrix multiplication rules would say that a * a is undefined because it is a nx1 matrix multiplied by a nx1 matrix. Or is the...