Loading initial values from MAT file

Hi folks,
my question is that,
is it possible to LOAD initial values to .mod file from a .mat file ?

I have initialvalues.m containing y and c,
how can I load these to dynare instead of writing manually?

Best regards,
Can.

That is not so easy. The only way I can think of is defining new parameters that store these initial values. Before the model-block, you assign your saved values to the parameters

[code]load myfile;
y_start=mysavedvaluefory;

initval;
y=y_start;
end;[/code]

Thanks a lot!
Can