Effacer les filtres
Effacer les filtres

removing the text data by only keeping the numerical values

1 vue (au cours des 30 derniers jours)
Abhijit Sardar
Abhijit Sardar le 21 Avr 2021
Commenté : Adam Danz le 22 Avr 2021
I want to remove all the text present before the two columns with numerical values.I have several files like this how can i do it for all the text files at the same time

Réponses (2)

Adam Danz
Adam Danz le 21 Avr 2021
Use readtable or readmatrix. Both functions allow you to specify the starting line of the data.
  2 commentaires
Abhijit Sardar
Abhijit Sardar le 22 Avr 2021
how will i do it if it is a text file
Adam Danz
Adam Danz le 22 Avr 2021
Those functions are designed to work with text files and other types of files.
Read the documentation, that's why I provided links. There's a bit of a learning curve to using these functions since they have many different options but that's all explained in the documentation along with examples. Walter Roberson's answer shows you how to do this and each of those steps are explained in the links I provided above.

Connectez-vous pour commenter.


Walter Roberson
Walter Roberson le 22 Avr 2021
filename = 'https://www.mathworks.com/matlabcentral/answers/uploaded_files/592115/D11.csv';
opt = detectImportOptions(filename, 'readvariablenames', false, 'headerlines', 9, 'extracolumnsrule', 'ignore');
t = readtable(filename, opt );
t.Properties.VariableNames = {'X-AXIS', 'Y-AXIS'};
summary(t)
Variables: X-AXIS: 2000×1 double Values: Min 0 Median 499.75 Max 999.5 Y-AXIS: 2000×1 double Values: Min -77 Median -0.5 Max 104

Catégories

En savoir plus sur MATLAB 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