Replace NaN value to blank in excel

5 次查看(过去 30 天)
joo tan
joo tan 2012-10-19
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?

回答(2 个)

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

请先登录,再进行评论。


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

类别

Help CenterFile Exchange 中查找有关 Data Import from MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by