Plz explain the operation
Show older comments
[~, ~, raw] = xlsread('C:\Users\KARTHIK P K\Desktop\kpk.xls','MT1_PMUtest_RealTimePass','E3:AQ1014');
raw(cellfun(@(x) ~isempty(x) && isnumeric(x) && isnan(x),raw)) = {''};
Explain the operation of the above statements plz
Accepted Answer
More Answers (1)
Azzi Abdelmalek
on 9 Apr 2013
0 votes
Read a cell raw from an Excel file then replace all numeric values, nan and empty element by ' '
Categories
Find more on Structures in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!