Replace NaN value to blank in excel
10 次查看(过去 30 天)
显示 更早的评论
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?
0 个评论
回答(2 个)
Sachin Ganjare
2012-10-19
2 个评论
Sachin Ganjare
2012-10-19
This script will perform required operations.
For Example:
Data = readfromexcel(File,'All');
Data = cellNaNReplace (Data,0);
Sachin Ganjare
2012-10-19
Also you can refer:
Hope it helps!!!
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!