Returning NaN after mean or sum calculation
18 次查看(过去 30 天)
显示 更早的评论
Dear all,
I have the following problem with a file, that I attached below. The file is a .txt. When I'm importing the data, I obtain a 43705x1 double file that I renamed x. When I write
>> mean(x)
or
>> sum(x)
the result I obtain is:
ans =
NaN
Why? I checked the presence of NaN in the file, e.g. by
>> x==NaN
but I obtained
>> max(ans)
ans =
logical
0
Does anyone know why there is NaN?
Thank you!
0 个评论
采纳的回答
Star Strider
2019-2-12
I cannot reproduce the problem you are seeing.
My code:
T = readtable('01-RHab.txt','ReadVariableNames',0);
x = T.Var1;
mean_x = mean(x)
sum_x = sum(x)
producing:
mean_x =
868.811686380379
sum_x =
37974890
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Entering Commands 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!