Problem with set_auxiliary_variables

Dear users,

I solved the steady state of my model by hand and tried to run Dynare.But I came across an error which is “Unrecognized function or variable ‘Filename.set_auxiliary_variables’.” I read the “Auxiliary variable” part of the Dynare manual to debug my code but still don’t find the problem.Could you please tell me what does the error mean and how to modify the code?

Here’s my mod file and steady-state data.
ProductionLink.mod (9.1 KB)
solvesteady.mat (25.2 KB)

I thank you in advance for your help.
jason

You are loading a file solvesteady.mat that contains Dynare global variables from a different file that overwrite the ones of the current mod-file.

Thank you very much jpfeifer! Your help is much appreciated.
I changed
load solvesteady
into
load solvesteady.mat
and It finally worked.