Effacer les filtres
Effacer les filtres

Import parts of large comma decimal txt file

4 vues (au cours des 30 derniers jours)
Jørgen Fone Pedersen
Jørgen Fone Pedersen le 4 Mar 2021
I need to import parts of a large txt file that looks like this:
I only want the numbers in a period decimal format.
How is the best way to do this? Have tried readtable, but it think the comma is a seperator and i only get the decimal points.
I have attached a reduced size copy of the .txt file.

Réponse acceptée

Jeremy Hughes
Jeremy Hughes le 4 Mar 2021
You can try this after R2020a
readtable(filename,'DecimalSeparator',',')
or earlier
opts = detectImportOptions(filename,'DecimalSeparator',',');
readtable(filename,opts)

Plus de réponses (0)

Catégories

En savoir plus sur Cell Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by