Splitting a Matrix and saving results

2 次查看(过去 30 天)
I have a matrix (35x5461). I need to split it into 127 matrices of (35x43)
Then each matrix needs to be saved as an ascii with a given prefix, followed by the matrix number
eg data0001.txt, data0002.txt, data0003.txt etc
I've tried using cell2mat with no luck, and am totally stuck on the outputs, any advice would be greatly appreciated

回答(1 个)

James Tursa
James Tursa 2015-6-18
编辑:James Tursa 2015-6-18
You can use a reshape to help isolate your matrices.
x = reshape(your_matrix,35,43,127);
Then x(:,:,k) is the k'th individual matrix.
The filename can be created with:
fname = sprintf('data%04d.txt',k);
But do you really need the data spit in separate files like this? It will be a pain to read them all in and combine them into a single matrix later on. Can't you just save the reshaped matrix, and then read in the whole thing and pick off your x(:,:,k) part for processing? What program is reading this data downstream?
  2 个评论
Robert
Robert 2015-6-18
Thanks for your answer, Unfortunately another Code I am going to use this data in is written such that it loads all the .txt files in a directory to read, rather than splitting up one file (I'm not matlab literate enough to alter that just yet).
In the answer you gave above, how does the 'k' translate into the actual code? I get what k is representing, the 3rd dimensio, but If I were to type the bottom part of the code in I'm guessing it would say 'k' is undefined...
James Tursa
James Tursa 2015-6-18
E.g.,
x = reshape(your_matrix,35,43,127);
for k=1:127
individual_matrix = x(:,:,k);
fname = sprintf('data%04d.txt',k);
% write the variable individual_matrix to the file fname here
end

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by