MATLAB: How to have a transposed

transposed;

If I have
>> A1
A1 =
V: {1x3 cell}
>> A1.V
ans =
[1x3 double] [1x3 double] [1x3 double]
How can I achieve a A1 transposed?

Best Answer

Use cell2mat and then transpose the matrix. mat2cell converts back to cell.