How to convert .mat to .txt?

12 次查看(过去 30 天)
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 个评论
Walter Roberson
Walter Roberson 2022-2-24
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?

请先登录,再进行评论。

回答(1 个)

Benjamin Thompson
Benjamin Thompson 2022-2-24
You can save variables from MATLAB to text using writematrix. Older versions of this are called csvwrite or dlmwrite.
  4 个评论
Benjamin Thompson
Benjamin Thompson 2022-2-24
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.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 LTE Toolbox 的更多信息

产品


版本

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by