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!