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
2012년 10월 19일
0 개 추천
댓글 수: 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!!!
Azzi Abdelmalek
2012년 10월 19일
num=xlsread('YourFileName.xls');
num(:,3)=[]
카테고리
도움말 센터 및 File Exchange에서 Data Import from MATLAB에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!