Please help : Reference to non-existent field

I am estimating a dsge model using Bayesian method.
but the problem below arises. I tried to solve it following some advices on the forums,but failed.
I am a newbie.
I will really appreciate your help .

??? Reference to non-existent field ‘y’.

Error in ==> read_variables at 63
dyn_tmp_01 = s.(deblank(var_names_01(dyn_i_01,:)));

Error in ==> dynare_estimation_1 at 237
rawdata =
read_variables(options_.datafile,options_.varobs,],options_.xls_sheet,options_.xls_range);

Error in ==> dynare_estimation at 62
dynare_estimation_1(var_list,varargin{:});

Error in ==> mymod at 302
dynare_estimation(var_list_);

Error in ==> dynare at 132
evalin(‘base’,fname) ;
mymod.mod (2.42 KB)

here is my datafile
simudata.xls (29.5 KB)

I’ve solved it maybe.
import simudata.xls ,save as simudata.mat
write .m file named simudata.m
codes as follows:
load simudata;
c=data(:,1);
y=data(:,2);


save simudata