Lets use the matrix A as an example:
-->A = [1 2 3; 4 5 6]
A =
1. 2. 3.
4. 5. 6.
I can transpose this matrix:
-->A'
ans =
1. 4.
2. 5.
3. 6.
...and I can reshape this matrix into a single column:
-->A(:)
ans =
1.
4.
2.
5.
3.
6.
...but I cannot transpose and reshape in a single line or without using a intermediate variable:
-->A'(:)
!--error 276
Missing operator, comma, or semicolon.
-->B = A'; B(:)
ans =
1.
2.
3.
4.
5.
6.
Is there a way to accomplish this without the intermediate variable?