Reading only number from ,string mixed with numbers in a file
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
I'm reading a data file that FEM mesh data. Initial few like are:
- TITLE = "fluent13.0.0 build-id: 10703"
- VARIABLES = "X"
- "Y"
- DATASETAUXDATA Common.VectorVarsAreVelocity="TRUE"
- ZONE T="fluid"
- STRANDID=0, SOLUTIONTIME=0
- Nodes=25, Elements=16, ZONETYPE=FEQuadrilateral
- DATAPACKING=POINT
I want to extract only 25 and 16 from line number 7 as a number. Please provide the command for it.
0 Kommentare
Akzeptierte Antwort
KSSV
am 10 Aug. 2017
file = 'tec.txt';
fid = fopen(file,'r') ;
for i = 1:7
str = fgetl(fid) ;
end
fclose(fid) ;
p = regexp(str,'\d+','match') ;
iwant = str2double(p) ;
Nodes = iwant(1) ;
Elements = iwant(2) ;
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Import and Analysis finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!