find finite numbers in B using logic indexing ?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Deeksha Veereddy
il 24 Giu 2021
Risposto: millercommamatt
il 24 Giu 2021
B=[Inf,9,-32,NaN,0,4,67,-Inf,NaN]
using logical indexing :
1.Find the finite numbers in B.
2.Find the sum of finite numbers in B.
0 Commenti
Risposta accettata
millercommamatt
il 24 Giu 2021
B_finite_only = B(isfinite(B));
B_finite_only_sum = sum(B_finite_only);
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Matrix Indexing 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!