How I can ignore NaN during calculating @std using "retime.
5 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
d2_std = retime(f2,'yearly',@std);
Here "f2" is monthly data containg some of the month NaN. so, "d2_std" giving NaN for all the year, how I can ignore NaN of f2;
0 Commenti
Risposta accettata
the cyclist
il 30 Mar 2023
Modificato: the cyclist
il 30 Mar 2023
retime(f2,'yearly',@(x)std(x,'omitnan'))
Più risposte (0)
Vedere anche
Categorie
Scopri di più su NaNs 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!