Mean returns Inf value why?
13 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
TAPAN PATEL
il 19 Giu 2020
Commentato: TAPAN PATEL
il 19 Giu 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.
0 Commenti
Risposta accettata
Rasul Khan
il 19 Giu 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;
Più risposte (0)
Vedere anche
Categorie
Scopri di più su MATLAB Report Generator in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!