Borrar filtros
Borrar filtros

using data from a .txt file in matlab

1 visualización (últimos 30 días)
Biza Ferreira
Biza Ferreira el 25 de Oct. de 2018
Comentada: madhan ravi el 26 de Oct. de 2018
Hello friends, I have a fews problems, I have a text file and inside have some data disposed in columns. I want to load some columns, now my problem is how to bring the columns that I need? This is my file.
  1 comentario
madhan ravi
madhan ravi el 26 de Oct. de 2018
Is the commas in the file represent dots?

Iniciar sesión para comentar.

Respuestas (2)

Abdul Rehman
Abdul Rehman el 25 de Oct. de 2018

Biza Ferreira
Biza Ferreira el 26 de Oct. de 2018
Thanks for your reply I ended up making the following code, but it does not bring me all the data.Can someone help me?
if true
%
[filename pathname]= uigetfile({'*.txt'},'Select .txt file');
fullpathname = strcat(pathname, filename);
app.locationFile.Value = fullpathname;
textLocalization = fopen(fullpathname,'r');
mesurements = textscan(textLocalization,'%d %d %d %f %d','HeaderLines',3,'Delimiter',' ');
fclose(textLocalization);
disp(mesurements)
end

Categorías

Más información sobre Data Import and Export en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by