MATLAB: How to solve readcell 1×1 missing

1x1 missingcelldataimportnanreadreadcell

I am using readcell command in order to read a file. But some numbers/data in columns show 1×1 missing. How could I solve this problem?
I ve tried
data=readcell('input.txt')
y=rmmissing(readtable(data(3:end,8)))
but no use.
Could you please help me?

Best Answer

data = readtable('input.txt', 'readvariablenames', false);
rmdata = rmmissing(data);
y = table2cell(rmdata);