how to read a data from text file

1 vue (au cours des 30 derniers jours)
zein
zein le 10 Avr 2021
Modifié(e) : dpb le 10 Avr 2021
I want to read data from text file formatted as follows:
number 7 is the number of points and they are listed in form of (x y z).
_____________________________________________________________________________________________________________________________-
7
(
(-1.4330704e-08 2.9000119e-12 0)
(1.0601769e-06 -0.0001249935 0)
(1.0601769e-06 0.00012499351 0)
(-1.4330704e-08 2.9000119e-12 0.00016666667)
(1.0601769e-06 -0.0001249935 0.00016666667)
(1.0601769e-06 0.00012499351 0.00016666667)
(4.391607e-06 -0.00025131502 0)
)
____________________________________________________________________________________________________________________________________
how to exclude the first 2 lines and last one and only include numbers inside the brackets and export the as x,y and z arry

Réponse acceptée

dpb
dpb le 10 Avr 2021
Modifié(e) : dpb le 10 Avr 2021
zein=readlines('yourfilename.txt');
xyz=str2double(split(extractBetween(zein(3:end-1),'(',')')," "));
  1 commentaire
zein
zein le 10 Avr 2021
Thanks alot

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Import and Export dans Help Center et File Exchange

Produits


Version

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by