How to save cell data from workspace?

I want to save my xy3 cell contains 2401x1
And I save to .mat file , then when I import data in workspace
it's show error "file contains uninterpretable data"
Why I can't read the cell file
thanks!

3 commentaires

Yowh
Yowh le 19 Nov 2012
Sir your link doesn't exist.
BB
BB le 19 Nov 2012
Hi,it is OK~
Jan
Jan le 19 Nov 2012
Please post the SAVE command you are using for storing the data. Then we can suggest a corresponding LOAD command.

Connectez-vous pour commenter.

 Réponse acceptée

Walter Roberson
Walter Roberson le 19 Nov 2012

0 votes

Do not uiimport() or import() your data: load() it.

1 commentaire

BB
BB le 19 Nov 2012
I use
load(filename.mat);
but still no data read to workspace

Connectez-vous pour commenter.

Plus de réponses (3)

Harshit
Harshit le 19 Nov 2012

0 votes

It is working for me after loading.
BB
BB le 19 Nov 2012

0 votes

This is my save code
savefile = 'listmode data.mat';
save(savefile, 'xy3');
It appear this error:
Warning: Variable 'xy3' cannot be saved to a MAT-file whose version is
older than 7.3.
To save this variable, use the -v7.3 switch.
Skipping...

2 commentaires

save(savefile, 'xy3', '-v7.3');
BB
BB le 19 Nov 2012
OK,thank you for your help~

Connectez-vous pour commenter.

wujihao wujihao
wujihao wujihao le 9 Jan 2018

0 votes

Hi, Sir,I have the same question,I want to save the workspace data which including Map,cell,and array.My purpose is saving the earlier data and using them in now calulating.How can I save them all in a text or whatever else.

Catégories

Community Treasure Hunt

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

Start Hunting!

Translated by