Aptech Systems, Inc. Worldwide Headquarters
Mailing Address:
PO Box 250
Black Diamond, WA 98010 USAStreet Address:
30741 Third Avenue #160
Black Diamond, WA 98010 USAPhone: 360.886.7100
FAX: 360.886.8922Ready to Get Started?
For Pricing and Distribution
Industry Solutions
Products
Resources
Support
Training & Events
Want more guidance while learning about the full functionality of GAUSS and its capabilities? Get in touch for in-person training or browse additional references below.
Tutorials
Step-by-step, informative lessons for those who want to dive into GAUSS and achieve their goals, fast.
Have a Specific Question?
Get a real answer from a real person
- Need Support?
Q&A: Register and Login
Support Plans
Premier Support and Platinum Premier Support are annually renewable membership programs that provide you with important benefits including technical support, product maintenance, and substantial cost-saving features for your GAUSS System or the GAUSS Engine.
User Forums
Join our community to see why our users are considered some of the most active and helpful in the industry!
Where to Buy
Available across the globe, you can have access to GAUSS no matter where you are.
Recent Tags
applications character vectors CMLMT covariance matrix dates dlibrary dllcall ECDF Editor error handling errors floating network GAUSS Engine Geometric mean graphics GUI hardware histogram hotkeys if statements installation Java API linux localization Matlab convert matlab translation matrices matrix initialization matrix manipulation Maxlik MaxLikMT Memory output pgraph graph PQG graphics RAM random numbers RedHat 6.1 simulation string functions strings threading threads loops Time Series writing dataRecent Questions
Features
Resources
Output for each loop
1
Is it possible for me to create different output file for each loop? For example i have 2 loops and file out1 has results from loop one, out2 file produced results from loop 2.
1 Answer
0
If the loops are not nested, you send the output to different files with this code:
//reset will cause any existing file to be //overwritten with new contents output file=loop1.out reset; for i(1, 10, 1); print "loop 1 iteration " i; endfor; output file=loop2.out reset; for i(1, 10, 1); print "loop 2 iteration " i; endfor; output off;
If the loops are nested, you can do this:
//Clear out files from previous run
output file=nestloop1.out reset;
output file=nestloop2.out reset;
for i(1, 10, 1);
output file=nestloop1.out on;
print "loop 1 iteration " i;
for j(10, 100, 10);
output file=nestloop2.out on;
print "loop 2 iteration " j;
endfor;
endfor;
output off;
If the output statement ends with ‘reset’, the next print statement will overwrite an existing file with the same name. If the output statement ends with
‘on’, the the print statements will be added to the end of any existing file.

