How to skip first three lines in Matlab and read the next line until fixed character appears?
Mostrar comentarios más antiguos
I have a input txt file as shown below:
*Heading
U:/Mesh_Sphere_faible.inp
*Node
1, 0.061725, 0.271605, 0.41523577
2, 0.05795391, 0.39902727, 0.29566634
3, 0.012345, 0.054321, 0.083047155
*Element, type=C3D10, ELSET=PART1
1, 150, 1278, 1280, 1282, 3738, 3742, 3740,
3739, 3741, 3743
2, 62, 700, 702, 704, 2342, 3747, 3745,
3744, 3746, 3748
3, 242, 1863, 1866, 1865, 3749, 3753, 3751,
3750, 3752, 3754
I want to read the data after line of '*Node'. I have tried
A=dlmread('Mesh_Sphere_faible.dat','',4,0)
but always stopped at line:
2, 0.05795391, 0.39902727, 0.29566634
How can I realise it?
And I also want to read until line
*Element, type=C3D10, ELSET=PART1
appears.
What can I do?
2 comentarios
Walter Roberson
el 28 de Mzo. de 2019
Editada: Walter Roberson
el 28 de Mzo. de 2019
Could you confirm that the lines alternate between 8 comma separated values (with trailing comma on the line) followed by 3 comma separated values?
Or is that just a result of how it was posted, and all of those values are on the same line?
Can you attach a sample file for certainty ?
KOU DU
el 28 de Mzo. de 2019
Respuesta aceptada
Más respuestas (2)
Niti K
el 27 de Mzo. de 2019
0 votos
you can use the function fgetl. you can open the file in read mode using fopen and set up a while loop with the file id.
sort of a pseudocode
1) open the file using fopen
2) utilizing a loop, use getl which will fetch all the characters in the current line. Each usasge of getl will fetch the next line in your file
3) string split the output from getl using space delimeter
4) use string compare to check whether first worf from string split matches your criteria (*node in this case)
5) you can then read the data you want untill you encounter (*element)
exit out of the loop
1 comentario
KOU DU
el 31 de Mzo. de 2019
Akira Agata
el 29 de Mzo. de 2019
Another possible solution:
% Read the file as a text
fid = fopen('Example.txt','r');
C = textscan(fid,'%s','Delimiter','\n');
C = C{1};
fclose(fid);
% Find row numbers which contains the words 'Node' and 'Element'
row1 = find(contains(C,'Node'));
row2 = find(contains(C,'Element'));
% Extract data rows
C = C(row1+1:row2-1);
% Convert to numeric matrix
D = cellfun(@(x) str2double(strsplit(x,',')),C,'UniformOutput',false);
D = cell2mat(D);
Categorías
Más información sobre Standard File Formats en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!