How to convert .mat to .txt?

15 views (last 30 days)
giancarlo maldonado cardenas
Commented: Benjamin Thompson on 24 Feb 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 Comment
Walter Roberson
Walter Roberson on 24 Feb 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?

Sign in to comment.

Answers (1)

Benjamin Thompson
Benjamin Thompson on 24 Feb 2022
You can save variables from MATLAB to text using writematrix. Older versions of this are called csvwrite or dlmwrite.
  4 Comments
giancarlo maldonado cardenas
How can i solve this problem?
Benjamin Thompson
Benjamin Thompson on 24 Feb 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.

Sign in to comment.

Categories

Find more on LTE Toolbox in Help Center and File Exchange

Products


Release

R2020a

Community Treasure Hunt

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

Start Hunting!