Hi All,
I am new to GAUSS. I am getting syntax error while trying to include the following .src
file.
#include C:\gauss13\src\eigrs.src;
#include C:\gauss13\src\corr.src;
I will be grateful to you if you can tell me where I am going wrong.
Thanks in advance
With regards,
Upananda
2 Answers
1
accepted
I would recommend taking a look at the blog post: What you need to know about #include.
The #include
statement can only be run as part of a program. If you try to run an #include
statement from the command-line or using "run selected text" (using F4 or the context menu) from an editor window, it will return a syntax error.
However, the two files that you mention are part of the standard GAUSS library. So you should not have to #include
them in your file. Try commenting out those statements and see if your code still runs.
In the case where you do want to execute the equivalent of an #include from the GAUSS command window, you can use the run
command instead:
run myfile.ext
instead of
#include myfile.ext
0
Hi Jason,
Thanks a lot for guiding me. It is a great experience for me as this is my first question in this forum.
With regards,
Upananda
Your Answer
2 Answers
I would recommend taking a look at the blog post: What you need to know about #include.
The #include
statement can only be run as part of a program. If you try to run an #include
statement from the command-line or using "run selected text" (using F4 or the context menu) from an editor window, it will return a syntax error.
However, the two files that you mention are part of the standard GAUSS library. So you should not have to #include
them in your file. Try commenting out those statements and see if your code still runs.
In the case where you do want to execute the equivalent of an #include from the GAUSS command window, you can use the run
command instead:
run myfile.ext
instead of
#include myfile.ext
Hi Jason,
Thanks a lot for guiding me. It is a great experience for me as this is my first question in this forum.
With regards,
Upananda