Hi Luisa,
At the end of your run file paste
load('results_Your_species.mat');
[stat, txtStat] = statistics_st(metaPar.model, par);
save('stat_Your_species.mat', 'stat')
pars <- readMat('DEB models/Your_species/results_Your_species.mat')
par.names <- unlist(labels(pars$par))
for(i in 1:length(par.names)){
assign(par.names[i], unlist(pars$par[i]))
}
stat <- readMat('DEB models/Your_species/stat_Your_species.mat')
stat.names <- unlist(labels(stat$stat))
for(i in 1:length(stat.names)){
assign(stat.names[i], unlist(stat$stat[i]))
}
Also, as I might have mentioned, the amphibian functionality isn't working yet in the ectotherm model so you'd have to manually alter the microclimate input to make it aquatic initially if you're working on a species with an aquatic tadpole/eggs, and then restart at metamorphosis under terrestrial microclimate conditions.
All the best,
Mike