Replace NaN value to blank in excel

5 visualizaciones (últimos 30 días)
joo tan
joo tan el 19 de Oct. de 2012
I have excel file with 3 column. The third column has NaN value. i need to replace the NaN value to blank...I not familiar with using excel in matlab .Can help me?

Respuestas (2)

Sachin Ganjare
Sachin Ganjare el 19 de Oct. de 2012
I think this what you need:
Hope it helps!!
  2 comentarios
Sachin Ganjare
Sachin Ganjare el 19 de Oct. de 2012
This script will perform required operations.
For Example:
Data = readfromexcel(File,'All');
Data = cellNaNReplace (Data,0);

Iniciar sesión para comentar.


Azzi Abdelmalek
Azzi Abdelmalek el 19 de Oct. de 2012
num=xlsread('YourFileName.xls');
num(:,3)=[]

Categorías

Más información sobre Data Import from MATLAB 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