Replace NaN value to blank in excel

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일

0 개 추천

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);

댓글을 달려면 로그인하십시오.

Azzi Abdelmalek
Azzi Abdelmalek 2012년 10월 19일

0 개 추천

num=xlsread('YourFileName.xls');
num(:,3)=[]

카테고리

도움말 센터File Exchange에서 Data Import from MATLAB에 대해 자세히 알아보기

질문:

2012년 10월 19일

Community Treasure Hunt

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

Start Hunting!

Translated by