[Err] Marsbar-users Digest, Vol 33, Issue 2
<spam_master <at> korea.ac.kr>
2009-04-07 17:39:05 GMT
Transmit Report:
lark <at> korea.ac.kr¿¡°Ô ¸ÞÀÏ ¹ß¼ÛÀ» 4¹ø ½ÃµµÇßÁö¸¸ ½ÇÆÐÇÏ¿´½À´Ï´Ù.
(½ÇÆÐ ÀÌÀ¯ : 554 Transaction failed. 451 Requested action aborted: User UnKnown
lark <at> korea.ac.kr *MDAUserContext::readFrom()(163.152.6.99))
<Âü°í> ½ÇÆÐ ÀÌÀ¯¿¡ ´ëÇÑ ¼³¸í
User unknown :¸ÞÀÏÀ» ¼ö½ÅÇÒ »ç¿ëÀÚ°¡ Á¸ÀçÇÏÁö ¾ÊÀ½
Socket connect fail:¼ö½Å ¸ÞÀÏ ¼¹ö¿Í ¿¬°á ½ÇÆÐ
DATA write fail :¼ö½Å ¸ÞÀÏ ¼¹ö·Î ¸Þ¼¼Áö ¼Û½Å ½ÇÆÐ
DATA reponse fail :¼ö½Å ¸ÞÀÏ ¼¹ö·ÎºÎÅÍ ¸Þ¼¼Áö ¼ö½Å ½ÇÆÐ
Send Marsbar-users mailing list submissions to
marsbar-users <at> lists.sourceforge.net
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/marsbar-users
or, via email, send a message with subject or body 'help' to
marsbar-users-request <at> lists.sourceforge.net
You can reach the person managing the list at
marsbar-users-owner <at> lists.sourceforge.net
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Marsbar-users digest..."
Today's Topics:
1. [SPAM] [Err] Marsbar-users Digest, Vol 33, Issue 1
(spam_master <at> korea.ac.kr)
2. Multiple contrast values (Bronwyn Glaser)
3. Re: Multiple contrast values (Matthew Brett)
4. Re: [SPM] marsbar ROI (Matthew Brett)
5. ??? Index exceeds matrix dimensions (KIDLAB)
----------------------------------------------------------------------
Message: 1
Date: Thu, 02 Apr 2009 09:56:15 +0900
From: spam_master <at> korea.ac.kr
Subject: [Marsbar-users] [SPAM] [Err] Marsbar-users Digest, Vol 33,
Issue 1
To: marsbar-users <at> lists.sourceforge.net
Message-ID:
<mailman.39344.1239124879.27532.marsbar-users <at> lists.sourceforge.net>
Content-Type: text/plain; charset="us-ascii"
Transmit Report:
lark <at> korea.ac.kr 4 õ Ͽϴ.
( : 554 Transaction failed. 451 Requested action aborted: User UnKnown lark <at> korea.ac.kr *MDAUserContext::readFrom()(163.152.6.99))
<>
User unknown : ڰ
Socket connect fail:
DATA write fail : ۽
DATA reponse fail : κ
-------------- next part --------------
An embedded message was scrubbed...
From: marsbar-users-request <at> lists.sourceforge.net
Subject: Marsbar-users Digest, Vol 33, Issue 1
Date: Thu, 02 Apr 2009 00:37:18 +0000
Size: 7987
------------------------------
Message: 2
Date: Mon, 06 Apr 2009 10:40:53 +0200
From: Bronwyn Glaser <Bronwyn.Glaser <at> unige.ch>
Subject: [Marsbar-users] Multiple contrast values
To: marsbar-users <at> lists.sourceforge.net
Message-ID: <0BD6E4D3-3837-4838-8FB2-65830F4F031B <at> unige.ch>
Content-Type: text/plain; charset="us-ascii"
Hello,
Using the batch model, the run_tutorial, and the archives from this
list, I have been trying to put together a batch script to extract
data from 16 ROIs using data from 50 subjects. However, I am getting
stuck on how to generate results for all 6 contrasts that I need to
test for each ROI. While the script accepts 6 "add_contrasts", the
results are always the values from the "effects of interest" contrast.
How can I change this code to get results back from all 6 contrasts,
including the beta estimates for the voxels in the ROI ?
Here's an example of the bottom line of the output that comes back
every time:
Contrast name ROI name: Extra SS: F
statistic: Uncorrected P: Corrected P
--------------------------------------------------------------------------------------------------------
effects of interest
------------------------------------------
ROI: 14.04: 4.73:
0.000001: 0.000001
And here is the code: The part that comes before is identical to the
batch model:
% Fetch data into marsbar data object
Y = get_marsy(R, D, 'mean');
% Estimate design on ROI data
E = estimate(D, Y);
% get design betas
b = betas(E);
% %Set contrasts to design & Add contrasts, the first 6 columns are my
conditions of interest, the next 6 are the rp movement regressors
(added in SPM), and the last column represents a constant. Matlab
would not accept them unless all 13 columns were represented
[E contrast_1] = add_contrasts(E, 'FL_HL', 'T', [0 0 1 0 -1 0 0 0 0 0
0 0 0]);
[E contrast_2] = add_contrasts(E, 'FP_HP', 'T', [0 0 0 1 0 -1 0 0 0 0
0 0 0]);
[E contrast_3] = add_contrasts(E, 'BL_HL', 'T', [1 0 0 0 -1 0 0 0 0 0
0 0 0]);
[E contrast_4] = add_contrasts(E, 'BP_HP', 'T', [0 1 0 0 0 -1 0 0 0 0
0 0 0]);
[E contrast_5] = add_contrasts(E, 'HL_AllL', 'T', [-1 0 -1 0 2 0 0 0 0
0 0 0 0]);
[E contrast_6] = add_contrasts(E, 'HP_AllP', 'T', [0 -1 0 -1 0 2 0 0 0
0 0 0 0]);
%Get and store statistics
stat_struct_1 = compute_contrasts(E, contrast_1);
stat_struct_2 = compute_contrasts(E, contrast_2);
stat_struct_3 = compute_contrasts(E, contrast_3);
stat_struct_4 = compute_contrasts(E, contrast_4);
stat_struct_5 = compute_contrasts(E, contrast_5);
stat_struct_6 = compute_contrasts(E, contrast_6);
[rep_strs, marsS, marsD, changef] = stat_table(E, 1:length(xCon))
disp(char(rep_strs))
savestruct(E, roi_file);
Thanks in advance!
-------------- next part --------------
An HTML attachment was scrubbed...
------------------------------
Message: 3
Date: Mon, 6 Apr 2009 10:22:11 -0700
From: Matthew Brett <matthew.brett <at> gmail.com>
Subject: Re: [Marsbar-users] Multiple contrast values
To: Bronwyn Glaser <Bronwyn.Glaser <at> unige.ch>
Cc: marsbar-users <at> lists.sourceforge.net
Message-ID:
<1e2af89e0904061022g5f711b27pfeaecc22655c1186 <at> mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
Hi,
> Here's an example of the bottom line of the output that comes back every
> time:
> Contrast name ? ? ? ? ? ? ? ? ? ROI name: ? ? ? Extra SS: ? ?F statistic:
> ?Uncorrected P: ? ?Corrected P
> --------------------------------------------------------------------------------------------------------
> effects of interest
> ------------------------------------------
...
> [rep_strs, marsS, marsD, changef] = stat_table(E, 1:length(xCon))
The code looks right to me. But, where does 'xCon' come from in the
last line? Is it possible this is the unmodified contrast structure,
and that you need the extra line:
xCon = get_contrasts(E);
above that?
Best,
Matthew
------------------------------
Message: 4
Date: Tue, 7 Apr 2009 09:30:17 -0700
From: Matthew Brett <matthew.brett <at> gmail.com>
Subject: Re: [Marsbar-users] [SPM] marsbar ROI
To: Jeffrey West <jwest <at> mprc.umaryland.edu>
Cc: "marsbar-users <at> lists.sourceforge.net"
<marsbar-users <at> lists.sourceforge.net>, SPM <at> jiscmail.ac.uk
Message-ID:
<1e2af89e0904070930j77f1f1b7x1c80c6f4bdc207a0 <at> mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1
Hi,
> i am attmepting to conduct a ROI using the marsbar toolbox and i have a
> question regarding the first step of running the analysis. i have
> constructed my images and now i want to conduct the analysis. when i click
> on the set design from file option in the marsbar gui, the screen takes me
> to my working directory. however, there are no files to select, the folder
> is empty. so i tried to change the settings at the bottom to eg: all files,
> but none of these allow any files to be displayed.
Marsbar will be looking for SPM.mat files defining the design.
There have been problems with some versions of the matlab file
selection GUI. You could try starting matlab with and without the
java virtual machine to see if that makes a difference:
# with
matlab
# without
matlab -nojvm
Best,
Matthew
------------------------------
Message: 5
Date: Tue, 7 Apr 2009 10:21:09 -0700 (PDT)
From: KIDLAB <krasnowkidlab <at> gmail.com>
Subject: [Marsbar-users] ??? Index exceeds matrix dimensions
To: marsbar-users <at> lists.sourceforge.net
Message-ID: <22934032.post <at> talk.nabble.com>
Content-Type: text/plain; charset=us-ascii
Hello all, I have already looked for solutions to this and tried the
'add/edit filter for FMRI design' change to the fmristat AR(2)- didn't work,
and then tried the link to a 'bug' but that link was bad (from 2005). I am
doing FIR event time course and get this error:
??? Index exceeds matrix dimensions.
Error in ==> mardo_2.event_x_fir>sf_ones_ons at 93
sf(ton(j),:) = sf(ton(j),:) + 1;
Error in ==> mardo_2.event_x_fir at 61
U.u = sf_ones_ons(U, xBF, k);
Error in ==> mardo.event_fitted_fir at 121
Xn = event_x_fir(D, [s e]', bin_length, bin_no, opts);
Error in ==> marsbar at 1662
tc{i} = event_fitted_fir(marsRes, ...
Error in ==> spm at 831
evalin('base',CBs{v-1})
??? Error using ==> spm('PopUpCB',gcbo)
Index exceeds matrix dimensions.
??? Error while evaluating uicontrol Callback
Does anyone know why it would only show up for a certain contrast and not
others in the same subject/run?
Thanks!
Emily
--
View this message in context: http://www.nabble.com/----Index-exceeds-matrix-dimensions-tp22934032p22934032.html
Sent from the MarsBaR mailing list archive at Nabble.com.
------------------------------
------------------------------------------------------------------------------
This SF.net email is sponsored by:
High Quality Requirements in a Collaborative Environment.
Download a free trial of Rational Requirements Composer Now!
http://p.sf.net/sfu/www-ibm-com
------------------------------
_______________________________________________
Marsbar-users mailing list
Marsbar-users <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/marsbar-users
End of Marsbar-users Digest, Vol 33, Issue 2
********************************************
------------------------------------------------------------------------------
This SF.net email is sponsored by:
High Quality Requirements in a Collaborative Environment.
Download a free trial of Rational Requirements Composer Now!
http://p.sf.net/sfu/www-ibm-com
_______________________________________________
Marsbar-users mailing list
Marsbar-users <at> lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/marsbar-users