Hi,
On 10/31/07, bworoch <bwo...@ui...> wrote:
>
> I want to run the batch script from the faq for multiple subjects. What is
> the code to save the estimated results at the end for future use?
What do you want to save? If the estimated design itself, put the
batch script into a loop over subjects
n_subjects = length(subjects);
subjects_estimated = cell(n_subjects)
for subject_no = 1:n_subjects
...
subjects_estimated(subject_no) = E;
end
or for contrasts:
subjects_stats(subject_no) = marsS;
Best,
Matthew
|