Replace NaN value to blank in excel
Mostra commenti meno recenti
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?
Risposte (2)
Sachin Ganjare
il 19 Ott 2012
0 voti
2 Commenti
Sachin Ganjare
il 19 Ott 2012
This script will perform required operations.
For Example:
Data = readfromexcel(File,'All');
Data = cellNaNReplace (Data,0);
Sachin Ganjare
il 19 Ott 2012
Also you can refer:
Hope it helps!!!
Azzi Abdelmalek
il 19 Ott 2012
num=xlsread('YourFileName.xls');
num(:,3)=[]
Categorie
Scopri di più su Logical in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!