Hi
I ran maxset; on Gauss 14 light version, and encountered into a problem
G0452 : Data not sufficient to initialize matrix '{,}' [maxlik.dec, line 77]
Could you please tell me how to solve this? thanks
2 Answers
0
Something is wrong with your version of Maxlik. There are a few variables in maxlik.dec that are initialized as missing values. For example, line 66 of my copy of maxlik.dec looks like this:
declare matrix _max_PriorProc = { . };
The dot represents a missing value. However, your error report says that you have a line trying to initialize a variable with a comma instead of the dot. Something like this:
declare matrix _max_PriorProc = { , };
That will indeed cause the error that you report.
G0452 : Data not sufficient to initialize matrix
So if you change the comma inside the curly braces to a dot, that should resolve this error.
0
Thank you!
Your Answer
2 Answers
Something is wrong with your version of Maxlik. There are a few variables in maxlik.dec that are initialized as missing values. For example, line 66 of my copy of maxlik.dec looks like this:
declare matrix _max_PriorProc = { . };
The dot represents a missing value. However, your error report says that you have a line trying to initialize a variable with a comma instead of the dot. Something like this:
declare matrix _max_PriorProc = { , };
That will indeed cause the error that you report.
G0452 : Data not sufficient to initialize matrix
So if you change the comma inside the curly braces to a dot, that should resolve this error.
Thank you!