Convert Cell Arrays Containing Cell Arrays to separate columns

1 次查看(过去 30 天)
I am trying to import specific number of lines from an output text file. I have used the textscan command to import the required lines. The imported data consists of 1000x1 cells (see the figure below). Any idea how to convert these cells into three separate columns?
% open the file
fid=fopen('dbe-ew-transient analysis - 5% critical damped.f06');
% set linenum to the desired line number that you want to import
linenum = 165164;
% use '%s' if you want to read in the entire line or use '%f' if you want to read only the first numeric value
C = textscan(fid,'%s',1000,'delimiter','\n', 'headerlines',linenum-1);
M = C{:};
Thanks in advance.
  3 个评论
Mahmoud Madany
Mahmoud Madany 2022-1-6
The main problem is that the output file contains both numerical and text characters. So the specific range defined above is to import numeric data only from the file.
Regarding the READTABLE or READMATRIX, I struggled with the file format, i.e., "*.f06", which is not pupular, and to define a specific range of data.
I tried to CollectOutput option in textscan, where a value of zero is assign, but the data is still imported into a single column.
*Attached a sample of the imported file (I changes the extension to *.txt as attachment option does not support *.f06 files).
Stephen23
Stephen23 2022-1-6
"I struggled with the file format, i.e., "*.f06", which is not pupular"
The file extension is irrelevant, you just need tell them that it is a text file using the option: "FileType","text":

请先登录,再进行评论。

采纳的回答

DGM
DGM 2022-1-6
The comments in the code suggest how to do this. Using the attached test file with some header lines to skip:
fid = fopen('test.txt');
% set linenum to the desired line number that you want to import
linenum = 4;
% use '%s' if you want to read in the entire line or use '%f' if you want to read only the first numeric value
C = textscan(fid,'%f %f %f',1000,'delimiter','\n', 'headerlines',linenum-1);
fclose(fid);
C = cell2mat(C)
C = 5×3
1.0e+04 * 0.0001 1.0002 0.0000 0.0002 1.0002 0.0000 0.0003 1.0002 0.0000 0.0004 1.0002 0.0000 0.0005 1.0002 0.0000

更多回答(1 个)

Chunru
Chunru 2022-1-6
fn ='dbe-ew-transient analysis - 5% critical damped.f06';
linenum = 165164;
M = readmatrix(fn, 'Range', 165164+":"+999);

类别

Help CenterFile Exchange 中查找有关 Data Type Conversion 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by