Gaussx

Frequently Asked Questions

FAQ373


Test18.prg runs under Gauss 3.5, but then crashes ?

This information applies to Gaussx for Windows, Vsn  3.7

Symptoms

Test18.prg runs fine, but at the end, Gaussx will not run, or Gauss disappears. 

Cause

Externals are handled differently under Gauss 3.5, causing some globals to wiped.  This occurs for the Gaussx mnp statement. 

Resolution

Edit the file \gauss\src\mnpx.src.  Change lines 108-111 to:

external matrix _mnpsc, _mnpint;
external matrix _cdford;
external matrix _cdftol;
proc mnp; endp;

and add the following code after line 129:

clear covmeth, covnorm;
_cdford = 16;
_cdftol = 1e-6;

 

 

Gaussx FAQ