loading a dataset (S=load('file_name'), how?
Afficher commentaires plus anciens
I have a 512*513 matlab dataset, saved as "file_name.mat". If I use load('file_name'), I can have the dataset loaded as 'data'. But I want it to be named as "S", and tried to use S=load('file_name'), but "S" has the structure informations only.
How can I load 'file_name' in 'S'? thanks!
Réponse acceptée
Plus de réponses (1)
Daniel Shub
le 30 Sep 2011
Even better would be
temp=load('file_name');
S = temp.data;
clear temp;
1 commentaire
Ken
le 30 Sep 2011
Catégories
En savoir plus sur Large Files and Big Data dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!