ttest2 not working in Matlab 2019a
7 views (last 30 days)
Show older comments
Ross Nichols
on 25 Aug 2019
Edited: Walter Roberson
on 25 Aug 2019
load examgrades
x = grades(:,1);
y = grades(:,2);
[h,p,ci,stats] = ttest2(x,y)
When I run this code in Matlab 2019a, found on the ttest2 documentation page, I get the following error:
Error using size
Dimension argument must be a positive integer scalar within indexing range.
Error in nanmean (line 43)
count = size(x,dim) - sum(nans,dim);
Error in nanvar (line 54)
avg = nanmean(x,dim);
Error in ttest2 (line 173)
s2x = nanvar(x,[],dim);
Anyone understand what is going on here?
Thank you very much.
Ross
0 Comments
Accepted Answer
Walter Roberson
on 25 Aug 2019
Edited: Walter Roberson
on 25 Aug 2019
You have your own (or some third-party) nanmean.m file .
Notice the error is on line 43 of nanmean. The Mathworks provided nanmean for R2019a is only 22 lines long. Furthermore, the error is shown as being on line 54 of nanvar, but the Mathworks provided nanvar for R2019a has only 42 lines.
I looked back to R2010* and confirmed that the official Mathworks version of nanmean has never had as many as 43 lines.
More Answers (0)
See Also
Categories
Find more on Encryption / Cryptography in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!