Usage of textscan format spec input argument to read text file data at repeated specified locations
Mostra commenti meno recenti
Dear Friends
Could anyone provide insight with reading the following data
I would like to read the text file data for the first value of every node (total 235 nodes) and store it as a 235 x 1 column array, X. (0.31158E+02, 0.38774E+02, 0.51027E+02,...)
Similarly, I would also want to read the file data for the second value for each of the 235 nodes given ( -0.15094E+03, -0.16236E+03, -0.17097E+03,... ) and store it as a 235 x 1 column array, Y.
and as well the 3rd value for each of the 235 nodes and store it as a 235 x 1 column array, Z
I am trying to use textscan to read the file data using an appropriate format spec repeated for 235 nodes times.
>> formatspec= '%f %*[\n]';
>> X=textscan(fid,formatspec,235)
X =
cell
[31.158000000000001]
what sort of format spec can i use to form the 235 x 1 column array for X (first value of every node) , Y (2nd value of every node) and Z (3rd value of every node) ?
1 Commento
Walter Roberson
il 3 Ott 2018
Please do not close questions that have an answer.
Risposta accettata
Più risposte (0)
Categorie
Scopri di più su Text Files in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!