count nan of different rows
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Victoria Pilar Quesada García
el 21 de Mzo. de 2023
Respondida: Stephen23
el 21 de Mzo. de 2023
I have this that adds 485 rows and more than a thousand columns but many of the values are NaN, I would like to count how many of those values are numbers but in each row. that is, each row represents data from a sensor and I want to know which sensor provides more numerical data
clear all;close all
load 'TG_sshobscorr.mat'
data=sshobscorr
0 comentarios
Respuesta aceptada
Stephen23
el 21 de Mzo. de 2023
S = load('TG_sshobscorr.mat');
D = S.sshobscorr;
Try either of these:
N = sum(~isnan(D),2)
N = sum(isfinite(D),2)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre NaNs en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!