find finite numbers in B using logic indexing ?

1 Ansicht (letzte 30 Tage)
Deeksha Veereddy
Deeksha Veereddy am 24 Jun. 2021
Beantwortet: millercommamatt am 24 Jun. 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.

Akzeptierte Antwort

millercommamatt
millercommamatt am 24 Jun. 2021
B_finite_only = B(isfinite(B));
B_finite_only_sum = sum(B_finite_only);

Weitere Antworten (0)

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Produkte


Version

R2014a

Community Treasure Hunt

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

Start Hunting!

Translated by