I have class in matlab using classdef as,
classdef scores
% SCORES Summary of this class goes here
% Class for stroring the individual scores array of each of the
% comparison of the models and the test files including the number of
% coefficients used and number of gaussian
properties
detailed_scores;
no_of_gauss=0;
end
methods
end
end
Created objects and saved into an array as;
for i=1:99
score = scores;
score.detailed_scores = somescore(:,9);
score.no_of_gauss = i;
array = [array score];
end
Now, I would want to save it into a matfile as;
save('somematfile.mat','array');
Is it possible to load this array later on to retrieve the data back ?