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

조회 수: 1 (최근 30일)
Petricek
Petricek 2014년 3월 4일
답변: Iain 2014년 3월 4일
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
Petricek
Petricek 2014년 3월 4일
Name Size Bytes Class Attributes
data 4095x1372x2 89893440 double
Thomas
Thomas 2014년 3월 4일
its because it is three dimensional.. It needs the data to be two dimensional to save double

댓글을 달려면 로그인하십시오.

답변 (2개)

Thomas
Thomas 2014년 3월 4일
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 2014년 3월 4일
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. .

카테고리

Help CenterFile Exchange에서 Migrate GUIDE Apps에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by