フィルターのクリア

Replace NaN value to blank in excel

4 ビュー (過去 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);
Sachin Ganjare
Sachin Ganjare 2012 年 10 月 19 日

サインインしてコメントする。


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

カテゴリ

Help Center および File ExchangeData Import from MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by