How to read and arrange certain data in multiple text file?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
arifahazwani AY
el 11 de Mzo. de 2020
Comentada: arifahazwani AY
el 11 de Mzo. de 2020
Hi,
I need to arrange the data after post-proceesing in text file and need to arrange the data in certain order. I only need the numerical part of the data. Any suggestion to solve this problem?
Attached herewith 3 text file of the data.
0 comentarios
Respuesta aceptada
Bhaskar R
el 11 de Mzo. de 2020
FAM_data = readmatrix('FAM.txt');
FCC_data = readmatrix('FCC.txt');
FM2_data = readmatrix('FM2.txt');
5 comentarios
Bhaskar R
el 11 de Mzo. de 2020
This part works for you
FAM_data = readmatrix('FAM.txt');
FCC_data = readmatrix('FCC.txt');
FM2_data = readmatrix('FM2.txt');
% OR horizantal concatanation
FAM_data(:,1 = []; % remove first and coulmn as it has NaN values and only 0's
FCC_data(:,1) = []; % remove first and coulmn as it has NaN values and only 0's
FM2_data(:,1) = []; % remove first and coulmn as it has NaN values and only 0's
total_data = [FAM_data ;FCC_data ;FM2_data ]; % horizantal concatanation
% write data to excel file
writematrix(total_data, 'file_name.xlsx');
Más respuestas (1)
Peter O
el 11 de Mzo. de 2020
Editada: Peter O
el 11 de Mzo. de 2020
This seems like a good opportunity to leverage MATLAB's table datatype:
Use readtable() to import your data and writetable() to spit it out in the correct column ordering (adding/removing columns as needed. Within writetable, if you specify the name-value pair "WriteVariableNames" and false, the output file will not contain the headers.
Ver también
Categorías
Más información sobre Data Type Conversion en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!