Re: [Marsbar-users] batch save
Status: Beta
Brought to you by:
matthewbrett
|
From: bworoch <bwo...@ui...> - 2007-11-01 20:37:57
|
Matthew, I saved the variable E into a .mat file for each subject, but was unable to then open those files using the results menu/Set results from file. I need a line of code at the end of my loop that will mimic the action of results menu/Save results to file, so that I am able to then use the other results menu options such as FIR time course, % signal change, etc. Thanks in advance, Brion Matthew Brett wrote: > > 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 > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Marsbar-users mailing list > Mar...@li... > https://lists.sourceforge.net/lists/listinfo/marsbar-users > > -- View this message in context: http://www.nabble.com/batch-save-tf4728172.html#a13536955 Sent from the MarsBaR mailing list archive at Nabble.com. |