You can conjugate transpose a matrix by using the ' operator. For example:
[1,2,3]*[4,5,6]'We transpose the second vector to make matrix multiplication possible.
If you just want to transpose a matrix without conjugating it, you would use the .' operator. For example:
[1,2,3]*[4,5,6i].'