Rank: 664 based on 143 downloads (last 30 days) and 6 files submitted
photo

Matthew Nelson

E-mail

Personal Profile:

http://www.its.caltech.edu/~nelsonmj/

Professional Interests:

 

Watch this Author's files

 

Files Posted by Matthew View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
21 Jul 2009 Binomial Test 1 or 2 sided binomial test with arbitrary binomial probabilities Author: Matthew Nelson stats, binomial test, statistics, probability, onesided, twosided 54 0
21 Apr 2009 Huynh-Feldt epsilon general procedure Calc. the Huynh-Feldt epsilon for any arbitrary combination of between and within subject factors Author: Matthew Nelson geissergreenhouse, orthogonal comparison, repeated measures, statistics, epsilon, huynhfeldt 28 2
  • 5.0
5.0 | 1 rating
25 Mar 2009 SDFConv Given spike times across trials, create smoothed peri-event hist convolved with a PSP or Gaus kernel Author: Matthew Nelson smoothed histogram, neuroscience, filter, sdf, spike, density function 16 0
25 Mar 2009 Find Optimal Kernel Find optimal causal filter kernel that convolves with one time series to approximate another Author: Matthew Nelson psychology, filter, estimate, crosscovariance, neuroscience, auto covariance matri... 26 6
  • 4.5
4.5 | 3 ratings
23 Mar 2009 Align repeated trials of analog data to a variable event Align matrices of repeated trials of analog data to a variable event without a for loop over trials. Author: Matthew Nelson neuroscience, eye position, psyc, matrices, align, trial 9 0
Comments and Ratings by Matthew
Updated File Comments Rating
25 Mar 2009 Find Optimal Kernel Find optimal causal filter kernel that convolves with one time series to approximate another Author: Matthew Nelson

xcov is available in matlab's signal processing toolbox. I'm sorry if that wasn't clear before. I've adjusted the online page to reflect that.

Comments and Ratings on Matthew's Files View all
Updated File Comment by Comments Rating
12 Mar 2010 Huynh-Feldt epsilon general procedure Calc. the Huynh-Feldt epsilon for any arbitrary combination of between and within subject factors Author: Matthew Nelson Yoni

This seems useful, especially with allowing the arbitrary numbers of both kinds of factors. But what functions would you use to get the actual F values from data that are arranged in the same way?

05 Oct 2009 Huynh-Feldt epsilon general procedure Calc. the Huynh-Feldt epsilon for any arbitrary combination of between and within subject factors Author: Matthew Nelson Kathrin

thank you! very flexible and easy to use for repeated measures anova. but it would be even more helpful if there was a little statistic (like mauchly's test on sphericity) specifying if one needs to adjust the degrees of freedoms with the computed epsilon estimates.

03 Jun 2009 Find Optimal Kernel Find optimal causal filter kernel that convolves with one time series to approximate another Author: Matthew Nelson Geurten, Bart

I just used your code and it is good commented. Does what I wanted it to do ;)

26 Mar 2009 Find Optimal Kernel Find optimal causal filter kernel that convolves with one time series to approximate another Author: Matthew Nelson Jangchub, Ngawang

% Sorry for the typos above...

newInSig=[InSig; InSig];
newOutSig=[OutSig; OutSig];
 
for i = 1:r
   Cxy(i,1)=InSig' * newOutSig(i+r-1,:);
   Cxx(i,1)=InSig' * newInSig(i+r-1,:);
end
Cxy=Cxy(2:MaxnLags+1, :);
Cxx=Cxx(1:MaxnLags, :);
Cxxmat=toeplitz(Cxx);
 
k= (Cxxmat^-1)*Cxy;

25 Mar 2009 Find Optimal Kernel Find optimal causal filter kernel that convolves with one time series to approximate another Author: Matthew Nelson Jangchub, Ngawang

% Without access to the Signal Processing Toolbox, it's difficult to % say for sure, but I suspect the following code would allow you to % run this routine without calling the xcov() function.

newInSig=[InSig; InSig];
newOutSig=[OutSig;outSig];

for i = 1:r
   Cxy(i,1)=InSig' * newOutSig(i+r-1,:);
   Cxx(i,1)=InSig' * newOutSig(i+r-1,:);
end
Cxy=Cxy(2:MaxnLags+1, :);
Cxx=Cxx(1:MaxnLags, :);
Cxxmat=toeplitz(Cxx);

k= (Cxxmat^-1)*Cxy;

Top Tags Applied by Matthew
neuroscience, analog, filter, psychology, statistics
Files Tagged by Matthew View all
Updated   File Tags Downloads
(last 30 days)
Comments Rating
21 Jul 2009 Binomial Test 1 or 2 sided binomial test with arbitrary binomial probabilities Author: Matthew Nelson stats, binomial test, statistics, probability, onesided, twosided 54 0
21 Apr 2009 Huynh-Feldt epsilon general procedure Calc. the Huynh-Feldt epsilon for any arbitrary combination of between and within subject factors Author: Matthew Nelson geissergreenhouse, orthogonal comparison, repeated measures, statistics, epsilon, huynhfeldt 28 2
  • 5.0
5.0 | 1 rating
25 Mar 2009 SDFConv Given spike times across trials, create smoothed peri-event hist convolved with a PSP or Gaus kernel Author: Matthew Nelson smoothed histogram, neuroscience, filter, sdf, spike, density function 16 0
25 Mar 2009 Find Optimal Kernel Find optimal causal filter kernel that convolves with one time series to approximate another Author: Matthew Nelson psychology, filter, estimate, crosscovariance, neuroscience, auto covariance matri... 26 6
  • 4.5
4.5 | 3 ratings
23 Mar 2009 Align repeated trials of analog data to a variable event Align matrices of repeated trials of analog data to a variable event without a for loop over trials. Author: Matthew Nelson neuroscience, eye position, psyc, matrices, align, trial 9 0
 

MATLAB Central Terms of Use

NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content. Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available via MATLAB Central. Read the complete Terms prior to use.

Contact us at files@mathworks.com