ttest2 not working in Matlab 2019a

5 vues (au cours des 30 derniers jours)
Ross Nichols
Ross Nichols le 25 Août 2019
Modifié(e) : Walter Roberson le 25 Août 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

Réponse acceptée

Walter Roberson
Walter Roberson le 25 Août 2019
Modifié(e) : Walter Roberson le 25 Août 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.
  1 commentaire
Ross Nichols
Ross Nichols le 25 Août 2019
Ahhhhhh
This absolutely would explain it. I'll hunt it down and remove it from my path. Thank you so much :)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by