Replace NaN value to blank in excel

5 Ansichten (letzte 30 Tage)
joo tan
joo tan am 19 Okt. 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?

Antworten (2)

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

Melden Sie sich an, um zu kommentieren.


Azzi Abdelmalek
Azzi Abdelmalek am 19 Okt. 2012
num=xlsread('YourFileName.xls');
num(:,3)=[]

Kategorien

Mehr zu Data Import from MATLAB finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by