MATLAB: Import file that consists of several vector in a way that I see each vector seperately and not in a structure

import datastructurevector

Hi,
I know that it's possible to load a matlab file with the following command:
filename = '2001-2010.mat'; importdata(filename);
due to the fact that this file '2001-2010.mat' consists of several vectors, I get a structure, but I would like to have each vector shown seperately as if I would import the data by klicking on the import data button, is that possible?

Best Answer

load 2001-2010
Related Question