Undefined structure G0507 : 'plotControl myPlot'

Hi,

I don’t understand why I cannot run in my GAUSS 13 the example provided in the help system:

//Declare the structure
struct plotControl myPlot;

//Initialize the structure
myplot = plotGetDefaults("xy");

//Create a column vector from -3 to 3 with a step size of 0.1
x = seqa(-3, 0.1, 60);
y = sin(x);

//Plot the data using the plotControl structure
plotXY(myPlot, x, y);
I get the following message:

Line 3 in C:\ …
Undefined structure G0507 : 'plotControl myPlot'
Line 3 in C:\ …
Inflation\untitled4.gss
Syntax error G0008 : 'myPlot'

However, in another GAUSS 13, the above example runs without problem.

Thanks,

João Nicolau

2 Answers



0



Most likely there is a problem with the installation. First, however, check to see what structures are defined when you start GAUSS. Open a new GAUSS session and enter:

struct -l;

This command prints a list of all structures that have been defined. In version 12 and the initial release of GAUSS 13, the plotControl structure was defined inside the kernel of GAUSS and would be defined on start-up.

If the struct -l command prints out the plotControl, plotCtlText, etc. structures, then you have an earlier version and you should next enter:

struct plotControl myPlot;

from the GAUSS command line.

If the struct -l command returns nothing, you have a more recent release.

Check your GAUSShome/src directory for a file called plotctl.sdf. This file contains the definition for the plotControl definition.

If you can find the file plotctl.sdf, run that file. Then enter:

struct plotControl myPlot;

at the GAUSS command prompt. If this is successful, then your problem is related to your installation of GAUSS not locating the plotCtl.sdf file correctly.

Post the results of this and we will get you up and running.

aptech

1,773


0



Thanks. It seems this is an installation problem:  after running plotctl.sdf I dint get any error message with “struct plotControl myPlot;”


Your Answer

2 Answers

0

Most likely there is a problem with the installation. First, however, check to see what structures are defined when you start GAUSS. Open a new GAUSS session and enter:

struct -l;

This command prints a list of all structures that have been defined. In version 12 and the initial release of GAUSS 13, the plotControl structure was defined inside the kernel of GAUSS and would be defined on start-up.

If the struct -l command prints out the plotControl, plotCtlText, etc. structures, then you have an earlier version and you should next enter:

struct plotControl myPlot;

from the GAUSS command line.

If the struct -l command returns nothing, you have a more recent release.

Check your GAUSShome/src directory for a file called plotctl.sdf. This file contains the definition for the plotControl definition.

If you can find the file plotctl.sdf, run that file. Then enter:

struct plotControl myPlot;

at the GAUSS command prompt. If this is successful, then your problem is related to your installation of GAUSS not locating the plotCtl.sdf file correctly.

Post the results of this and we will get you up and running.

0

Thanks. It seems this is an installation problem:  after running plotctl.sdf I dint get any error message with “struct plotControl myPlot;”



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