replace NaN values with numericl values

469 visualizaciones (últimos 30 días)
lina
lina el 3 de Abr. de 2014
Comentada: charles Chamcha el 18 de Mzo. de 2023
Hi all,
i have a NaN values in the matrix those i can not importing a numerical values in it the undefined variable error is appear
the question is what should i do to import the numerical matrix into NaN matrix ?
Thanks in advance.
  4 comentarios
Azzi Abdelmalek
Azzi Abdelmalek el 3 de Abr. de 2014
How your text file looks like?
lina
lina el 3 de Abr. de 2014
nc files those for marine physics not all of variables are apear

Iniciar sesión para comentar.

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 3 de Abr. de 2014
If you want to replace the nan values by 0 for example
A(isnan(A))=0
  5 comentarios
madhusmita sahu
madhusmita sahu el 4 de Mayo de 2020
thank you so much sir
charles Chamcha
charles Chamcha el 18 de Mzo. de 2023
thanks

Iniciar sesión para comentar.

Más respuestas (2)

BAPPA MUKHERJEE
BAPPA MUKHERJEE el 6 de Dic. de 2019
Hi
How can I replace some values with NAN form a time sries.

carolina franco
carolina franco el 28 de En. de 2020
Hi,
Another simple way to understand what's going on .
For me, it works well in R2014a. You only need to enter the matrix with NaN values without specifying the columns where NaN values are.
Here NaN values are replaced by 0s but you can easily modify it in the 8th line of this code:
%Input
m_data=C{1,1}; % Matrix with NaN values
%Code
s1=size(m_data,1);
for i= 1: s1
msubs=m_data(i,1:end); % Save existing data in ith row of m_data
msubs=msubs(isnan(m_data(i,1:end))==0); %Substitute matrix/ taking only non-NaN values
m_data(i,1:end)=0; %Erase all existing values in ith row of m_data and REPLACE by 0s
m_data(i,1:size(msubs,2))=msubs; %Substitute values without NaN
end

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by