Effacer les filtres
Effacer les filtres

Mean returns Inf value why?

19 vues (au cours des 30 derniers jours)
TAPAN PATEL
TAPAN PATEL le 19 Juin 2020
Commenté : TAPAN PATEL le 19 Juin 2020
hello all,
I am doing mean raw wise by using :
M = mean(Mag1_Normal_Aligned_full,2);
I have attached 'Mag1_Normal_Aligned_full.mat' file, I do not understand why matlab returns Inf value using mean command.

Réponse acceptée

Rasul Khan
Rasul Khan le 19 Juin 2020
It's because there is atleast one Inf value in each row. You can check with this script
for i = 1 : 101
if any(isinf(Mag1_Normal_Aligned_full(i , :)))
disp(i);
end;
end;
  1 commentaire
TAPAN PATEL
TAPAN PATEL le 19 Juin 2020
Ahh! Thank you Rasul Khan, I didnt notice that

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Data Types dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by