MATLAB: What does mean this X=[A’B’C’] ?

matrices

A = [1 2 3]
B = [-1 1 3]
C = [5 6 7]
if A, B, C are matrices with these values and X = [A'B'C'] then
What is 'X' ??

Best Answer

Why not try it in command window??
A,B and C are turned into column vectors and are horizantally concatenated with each other.
Note: always use nonconjugate transpose instead of conjugate transpose.
>> A = [1 2 3]
B = [-1 1 3]
C = [5 6 7]
A =
1 2 3
B =
-1 1 3
C =
5 6 7
>> X = [A' B' C']
X =
1 -1 5
2 1 6
3 3 7
>>