dataset transformation

1 view (last 30 days)
Pieter
Pieter on 31 May 2011
Hello,
Is there a fast way to transform a 2000x100 dataset into a 1x200000 dataset?
Thanks!

Accepted Answer

Walter Roberson
Walter Roberson on 31 May 2011
Do you mean dataset in the sense of just an array, or do you mean dataset as in the Statistics (or Database?) toolkit?
If D is a matrix, then
D(:).'
would be 1 x numel(D) with the elements column-first.
reshape(D.',1,numel(D))
would be 1 x numel(D) with the elements row-first.
  1 Comment
Pieter
Pieter on 31 May 2011
Thanks!
The reshape formula works perfectly!

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!