How do I export a cell array containing double arrays into an ASCII-file format?

5 ビュー (過去 30 日間)
I have a cell array containing double arrays of one row and different length of columns. I want to export it into a file.

採用された回答

MathWorks Support Team
MathWorks Support Team 2021 年 10 月 12 日
編集済み: MathWorks Support Team 2021 年 10 月 12 日
The SAVE function will only save cell arrays to a MAT-file. To save your cell array to an ASCII-file, you will need to use the FPRINTF function to save cell arrays to an ASCII-file. The following example demonstrates how to save a cell array to an ASCII-file using the FPRINTF function:
x={[1 2] [2 3 4] [5 6 7 8]};
fid = fopen('cell_array.txt','w');
for i=1:length(x)
fprintf(fid,'%d ',x{i});
fprintf(fid,'\n');
end
fclose(fid);
type cell_array.txt
If you have a cell array which contains characters (or other non-numeric data) you will need to modify the above code to properly format your data in the text file. More information is available by executing the following command in MATLAB
doc fprintf
or in the following tech note on our website:
You can export a cell array containing double array of one row and different lengths of columns using the SAVE function in a MAT-file. The following is a sample code that you can use to achieve this:
x={[1 2] [2 3 4] [5 6 7 8]};
save cell_array % this will save the cell array x in file cell_array.mat
You can then import this data in MATLAB workspace using the LOAD function:
load cell_array
For more information about the SAVE and LOAD functions, refer to the MATLAB documentation using either "help save" or "doc save" (same for LOAD) commands at the MATLAB Command Prompt.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeText Files についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by