Integrating a t-test into a function how-to
조회 수: 2 (최근 30일)
이전 댓글 표시
Hey, I need to run two t-tests on my dataset in a fucntion one is meant to compare the means of reaction times and the other has to compare the two variances between
coefficient values (std/means).
The ttest function works fine until I try and integrate it into a function.
This is what I have so far but it seems to come up with the error message undefined variable 'x' or undefined variable 'y'
I've tried renaming the means as 'c1m' but it keeps swithcing them out for '1cm'
function [h,p] = suffer3(data,x,y)
files = dir(data);
for s = 1:size(files,1)
temp = load(file(s).name;
tempdata = temp.data.reproduction;
x = mean (tempdata(tempdata (:,1)==1,2))
y = mean (tempdata(tempdata(:,1)==0,2))
[h,p]= ttest2(x, y)
end
Both my 'h' & 'p' outputs say NaN when i run the function.
Little help as to what I'm doing wrong would be grandly appreciated :)
댓글 수: 0
답변 (1개)
Jeff Miller
2019년 11월 28일
Put in a breakpoint at the ttest2 line and check the inputs x and y that you are passing. These must not be what ttest2 expects.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Hypothesis Tests에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!