how to change a .txt file to a .mat file

20 visualizaciones (últimos 30 días)
Lucrezia Cester
Lucrezia Cester el 31 de En. de 2020
Comentada: Stephen23 el 31 de En. de 2020
Hello, I have a .txt file that I want to convert into a .mat file.
I tried this code
M = dlmread('test_background_id.txt'); %Use a better name that M
save('somefile.mat', 'M');
However I get an error
% Error using dlmread (line 147)
% Mismatch between file and format character vector.
% Trouble reading 'Numeric' field from file (row number 1, field number 1) ==> Serial:
% 00002405\n
Anyone knows why this is the case?
Thanks
  2 comentarios
Bhaskar R
Bhaskar R el 31 de En. de 2020
dlmread is expecting format specifier. Can you share some your text file?
Lucrezia Cester
Lucrezia Cester el 31 de En. de 2020
Here is the file

Iniciar sesión para comentar.

Respuesta aceptada

Stephen23
Stephen23 el 31 de En. de 2020
Editada: Stephen23 el 31 de En. de 2020
"Anyone knows why this is the case?"
dlmread only imports purely numeric data, which your file is not.
You will have to parse the file using some other tools, e.g. using fileread and a regular expression (you could probably coerce textscan and/or readtable to do much the same thing):
>> str = fileread('test_background_id.txt');
>> C = regexpi(str,'^([A-Z]+):\s*(.+?)\s*$','tokens','lineanchors');
>> C = vertcat(C{:})
'Serial' '00002405'
'Commit' 'be6aa3b35e7caab3db1a87f95510bd40c86a7431'
'CCamDeviceVersion' '1.3.0-1920618'
'SystemVersion' '3.0.0'
'SystemBuildDate' 'Mon Oct 08 17:12:03 2018'
'SystemVersionControlID' '7e8c3be8'
'SystemId' '15'
which you can easily convert to a convenient structure:
>> S = cell2struct(C(:,2),C(:,1),1);
>> S.Serial
ans =
00002405
>> S.SystemVersion
ans =
3.0.0
After that it is trivial to save it as a .mat file:
>> save('somefile.mat','-struct','S')
TIP: always load into an output variable:
S = load(...)
  6 comentarios
Lucrezia Cester
Lucrezia Cester el 31 de En. de 2020
where did you attach the .mat file?
Stephen23
Stephen23 el 31 de En. de 2020
"yes I did use the save line but no .mat file appears "
Did you check in the current directory?
"where did you attach the .mat file?"
To my previous comment. You can download it by clicking the link at the top of the comment. Here is a screenshot showing you where the link is:
Capture.PNG

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre File Operations en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by