You can do this with cds_srr too. I'm pointing at the "psf" dir which is created after the parametric analysis is done - this collates all the individual runs together (using a "runObjFile") - so if I do:
sig=cds_srr('psf','tran-tran','out')
I get:
sig =
info: {'V' 'V' 'time' 's' 'temp' 'Non' 'CAP' 'Non'}
CAP: [5.0000e-13 8.7500e-13 1.2500e-12 1.6250e-12 2.0000e-12]
temp: [25 80]
time: [55x2x5 double]
V: [55x2x5 double]
Looking at sig.temp gives my temperature axis, sig.CAP is the axis of the design variable CAP that I swept, and sig.time and sig.V give me the matrices versus these two other variables.
So for example, sig.time(:,1,1) and sig.time(:,1,1) will give me the time sweep at temp=25 and CAP=5e-13)
Regards,
Andrew.