How can I deleate or replace with a 0 all the Nan, Inf anf -Inf values in a time series from the biggining to the end?
26 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Ive got a time series from Simulink that changes its size every time I run the simulation and I want to get rid of all the Nan anf Inf values.
Any idea of how I can do that?
0 Commenti
Risposte (3)
madhan ravi
il 21 Set 2019
Modificato: madhan ravi
il 21 Set 2019
a(isinf(a)|isnan(a))=0 % replaces with zero
David Hill
il 21 Set 2019
A(~isnan(A)&A~=Inf);
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!