Borrar filtros
Borrar filtros

How to convert .mat to .txt?

9 visualizaciones (últimos 30 días)
giancarlo maldonado cardenas
giancarlo maldonado cardenas el 23 de Feb. de 2022
Comentada: Benjamin Thompson el 24 de Feb. de 2022
Hi friends.
I have a problem, how can I convert my Datase.mat matlab file to .txt to send to a friend, because this friend doesn't have matlab and he needs to see what the Dataset.mat file contains.
And within this dataset.mat file there are nested structures.
I attach the Dataset.mat file
Thanks in advance
  1 comentario
Walter Roberson
Walter Roberson el 24 de Feb. de 2022
What part of it does he need to see? Your file includes struct and includes cell array of struct, and includes some arrays with several thousand entries. You would have to transfer in a way that your friend could read.
For example, you might be able to use jsonencode() on a modified version of the data. Not an exact version, because your data includes complex numbers, which json does not support; you would have to either convert those to string or convert to real() and imag() lists. Also, your radius is a 1 x 10 cell array, each element of which is a scalar double, and jsonencode converts that as-if it were a plain 1 x 10 vector of double.
Does your friend have to know the exact details of the data, or are only some variables needed, or would it be acceptable to do things like split into real and imaginary components?

Iniciar sesión para comentar.

Respuestas (1)

Benjamin Thompson
Benjamin Thompson el 24 de Feb. de 2022
You can save variables from MATLAB to text using writematrix. Older versions of this are called csvwrite or dlmwrite.
  4 comentarios
giancarlo maldonado cardenas
giancarlo maldonado cardenas el 24 de Feb. de 2022
How can i solve this problem?
Benjamin Thompson
Benjamin Thompson el 24 de Feb. de 2022
For converting structures to text, see examples in the File Exchange such as this one:
I used one of these in a project in the past, it was quite effective. Many browsers and some applications have support for displaying XML.

Iniciar sesión para comentar.

Categorías

Más información sobre LTE Toolbox 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