Is it possible to save . mat <4095x1384x2 double> file to txt file?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Thomas
el 4 de Mzo. de 2014
its because it is three dimensional.. It needs the data to be two dimensional to save double
Respuestas (2)
Thomas
el 4 de Mzo. de 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.
0 comentarios
Iain
el 4 de Mzo. de 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. .
0 comentarios
Ver también
Categorías
Más información sobre Text Files en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!