How to take transpose of a tall array ?
1 view (last 30 days)
Show older comments
I have a large training data set that is being used for a machine learning problem. In order to tackle the "out of memory" issue that I got on matlab while running the code, I tried using tall arrays. But I need to find the transpose of the array and that functionality is not available. Can someone please suggest an alternate method or guide me with a workaround method to find the transpose of the array ?
6 Comments
KSSV
on 16 Jul 2019
How is your data? Is it on some external file? You want to use the data for training NN?
Guillaume
on 16 Jul 2019
"For having training data set it is necessary to have table in row direction thus it should be transposed"
I don't know what a table in row direction is. In any case, typically for training a NN you'd pass rows of a table so there would be no need for any transpose.
And as I said originally, you will never be able to transpose a tall array. Transpose requires storing all the rows of the tall arrays, which is of course what tall arrays are designed not to do.
Answers (0)
See Also
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!