Is it possible to save . mat <4095x1384x2 double> file to txt file?

2 views (last 30 days)
Is it possible to save 4095x1384x2 double . mat file to txt file?
I have tried this but it didnt work. >> save file.txt data -ascii -double -tabs Warning: Attempt to write an unsupported data type to an ASCII file. Variable 'data' not written to file.
  3 Comments
Petricek
Petricek on 4 Mar 2014
Name Size Bytes Class Attributes
data 4095x1372x2 89893440 double
Thomas
Thomas on 4 Mar 2014
its because it is three dimensional.. It needs the data to be two dimensional to save double

Sign in to comment.

Answers (2)

Thomas
Thomas on 4 Mar 2014
You can save it as slices
data1=data(:,:,1);
data2=data(:,:,2);
and then save or he alternative would be to use reshape to make it a 2D matrix and save it, and when you load it, reshape it back to a 3D matrix.

Iain
Iain on 4 Mar 2014
Yes. You can most certainly save something that big to text file. I wouldn't say that is sensible.
There are three reasons for this:
1. Your data is huge (90MB) and as text, I'd expect it to be more than that. 2. It'll take ages to write. 3. How do you want to arrange your data? Its a 3-D table, at best, text gives you a simple 2-d table
A simple method for getting the data into a text file, is actually to use the "diary" function, (which makes everything printed to screen go straight into a text file), then just make your variable print to screen. The data will not be sensibly arranged, and it will be hard to read, but it'll be in a file which someone can eventually decide to read. .

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!