A row vector is converted to a column vector (and vice versa) using the transpose operator (. ‘):
Example
>> V = [ 1 2 3 4 5 6] V = 1 2 3 4 5 6 >> V = V.' V = 1 2 3 4 5 6
A row vector is converted to a column vector (and vice versa) using the transpose operator (. ‘):
>> V = [ 1 2 3 4 5 6] V = 1 2 3 4 5 6 >> V = V.' V = 1 2 3 4 5 6