Reading a file without extension

38 visualizaciones (últimos 30 días)
Chris Dan
Chris Dan el 28 de Abr. de 2022
Editada: dpb el 28 de Abr. de 2022
Hello,
I want to read a file in matlab which doesnot have an extension. I am attaching the file by converting the file to .txt file because otherwise it cannot be uploaded, originally the file doesnot have any extension and I want to read it without extension. I am using this code
cd /hamzah/adda/src/seq/results/test/run002_cylinder_g25_m1.105;
A = importdata('log')
The problem is that I want to read this file from line 1 till line 21, but when i use import data, I could only read till line 2.
Does anyone knows how it can be solved?
  1 comentario
Stephen23
Stephen23 el 28 de Abr. de 2022
Editada: Stephen23 el 28 de Abr. de 2022
Do not use CD to import/export data files. Using CD is slow and makes debugging harder.
All MATLAB functions that import/export data file data accept absolute/relative filenames.
Do not use PATH as a variable name (it is the name of an important function), use e.g. MYPATH.
Replace this:
[mypath '/' folders(k).name '/log']
with FULLFILE:
fullfile(mypath,folders(k).name,'log')

Iniciar sesión para comentar.

Respuesta aceptada

dpb
dpb el 28 de Abr. de 2022
Editada: dpb el 28 de Abr. de 2022
Take @Stephen's comments to heart; they're important.
D='/hamzah/adda/src/seq/results/test/run002_cylinder_g25_m1.105';
txt=readlines(fullfile(D,'log.'));
will bring in the file content as a string array. As a freeform text file, the content is simply too irregular for any of the prepared file routines to be able to handle.
The other technique for such files where generally one is interested in parsing one or more specific pieces of information is to use low-level i/o and fgetl(() and then parse each line in turn.
There are a number of examples of such on the Answers forum; I don't have a specific link but I know I've written several...

Más respuestas (0)

Categorías

Más información sobre Data Type Conversion en Help Center y File Exchange.

Productos


Versión

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by