how to flatten a matrix in row major order

More Answers (1)

B=A'; B(:)'

1 Comment

Using ' instead of .' makes extra work because ' is conjugate transpose. Your code does the conjugate transpose twice so you do end up with the original values, but it is work that doesn't have to be done.

Sign in to comment.

Categories

Asked:

on 19 Nov 2012

Commented:

on 16 Aug 2015

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!