Borrar filtros
Borrar filtros

loading a dataset (S=load('file_name'), how?

5 visualizaciones (últimos 30 días)
Ken
Ken el 30 de Sept. de 2011
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!

Respuesta aceptada

Fangjun Jiang
Fangjun Jiang el 30 de Sept. de 2011
Once you loaded,
S=data;
clear data;

Más respuestas (1)

Daniel Shub
Daniel Shub el 30 de Sept. de 2011
Even better would be
temp=load('file_name');
S = temp.data;
clear temp;

Categorías

Más información sobre Data Import from MATLAB en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by