find finite numbers in B using logic indexing ?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Deeksha Veereddy
el 24 de Jun. de 2021
Respondida: millercommamatt
el 24 de Jun. de 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 comentarios
Respuesta aceptada
millercommamatt
el 24 de Jun. de 2021
B_finite_only = B(isfinite(B));
B_finite_only_sum = sum(B_finite_only);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!