Coverting row vector to Column Vector
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
June 28, 2013
August 20, 2013
July 18, 2013