Effacer les filtres
Effacer les filtres

Replace NaN value to blank in excel

4 vues (au cours des 30 derniers jours)
joo tan
joo tan le 19 Oct 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?

Réponses (2)

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

Connectez-vous pour commenter.


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

Catégories

En savoir plus sur Data Import from MATLAB dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by