Hi all,
I'm currently running a parameter space search via Maple scripting. The pseudo-code goes something like this:
fopen text file to write data to;
initialize parameters (variable) x, y, and z;
for x number of iterations
A:-Simulate(model.msim, with [parameters]);
Update parameters with new values;
Write to text file;
end do;
fclose(text file)