G0452 : Data not sufficient to initialize matrix '{,}' [maxlik.dec, line 77]

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.

aptech

1,773


0



Thank you!

Your Answer

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!


You must login to post answers.

Have a Specific Question?

Get a real answer from a real person

Need Support?

Get help from our friendly experts.

Try GAUSS for 14 days for FREE

See what GAUSS can do for your data

© Aptech Systems, Inc. All rights reserved.

Privacy Policy